AFFiNE/apps/web/next.config.mjs

146 lines
3.6 KiB
JavaScript
Raw Normal View History

2023-03-02 05:13:45 +03:00
// @ts-check
2023-02-19 11:40:39 +03:00
import path from 'node:path';
import debugLocal from 'next-debug-local';
import preset from './preset.config.mjs';
import { createRequire } from 'node:module';
import { getCommitHash, getGitVersion } from './scripts/gitInfo.mjs';
2023-03-02 11:49:33 +03:00
import { PerfseePlugin } from '@perfsee/webpack';
2023-02-19 11:40:39 +03:00
const require = createRequire(import.meta.url);
console.info('Runtime Preset', preset);
const enableDebugLocal = path.isAbsolute(process.env.LOCAL_BLOCK_SUITE ?? '');
2023-01-07 12:01:10 +03:00
const profileTarget = {
ac: '100.85.73.88:12001',
2023-02-09 10:24:25 +03:00
dev: '100.84.105.99:11001',
test: '100.84.105.99:11001',
stage: '',
pro: 'http://pathfinder.affine.pro',
2023-01-07 12:01:10 +03:00
local: '127.0.0.1:3000',
rem: 'stage.affine.pro',
2023-01-07 12:01:10 +03:00
};
const getRedirectConfig = profile => {
const target = profileTarget[profile || 'dev'] || profileTarget['dev'];
return [
[
{ source: '/api/:path*', destination: `http://${target}/api/:path*` },
{
source: '/collaboration/:path*',
destination: `http://${target}/collaboration/:path*`,
},
],
target,
2023-02-10 15:41:01 +03:00
profile || 'dev',
2023-01-07 12:01:10 +03:00
];
};
2022-09-22 10:39:53 +03:00
/** @type {import('next').NextConfig} */
2022-11-03 09:53:44 +03:00
const nextConfig = {
productionBrowserSourceMaps: true,
compiler: {
removeConsole: {
exclude: ['error', 'log', 'warn', 'info'],
},
emotion: {
sourceMap: true,
},
},
images: {
unoptimized: true,
},
experimental: {
swcPlugins: [
['@swc-jotai/debug-label', {}],
// ['@swc-jotai/react-refresh', {}],
],
},
reactStrictMode: true,
2023-02-17 05:43:52 +03:00
transpilePackages: [
'@affine/component',
'@affine/datacenter',
'@affine/i18n',
2023-03-02 05:13:45 +03:00
'@affine/debug',
2023-03-02 04:26:55 +03:00
'@affine/env',
2023-02-17 05:43:52 +03:00
],
publicRuntimeConfig: {
PROJECT_NAME: process.env.npm_package_name,
BUILD_DATE: new Date().toISOString(),
gitVersion: getGitVersion(),
hash: getCommitHash(),
serverAPI:
profileTarget[process.env.NODE_API_SERVER || 'dev'] ?? profileTarget.dev,
editorVersion: require('./package.json').dependencies['@blocksuite/editor'],
...preset,
},
2023-03-02 11:49:33 +03:00
webpack: (config, { dev, isServer }) => {
2022-12-30 14:42:01 +03:00
config.experiments = { ...config.experiments, topLevelAwait: true };
config.module.rules.push({
test: /\.md$/i,
loader: 'raw-loader',
});
2023-03-02 11:49:33 +03:00
if (!isServer && !dev) {
config.devtool = 'hidden-nosources-source-map';
const perfsee = new PerfseePlugin({
project: 'affine-toeverything',
});
if (Array.isArray(config.plugins)) {
config.plugins.push(perfsee);
} else {
config.plugins = [perfsee];
}
}
return config;
},
rewrites: async () => {
2023-02-10 15:41:01 +03:00
const [profile, target, desc] = getRedirectConfig(
process.env.NODE_API_SERVER
2023-01-07 12:01:10 +03:00
);
console.info(`API request proxy to [${desc} Server]: ` + target);
2023-01-07 12:01:10 +03:00
return profile;
2022-11-03 13:50:27 +03:00
},
2023-02-14 09:51:05 +03:00
basePath: process.env.NEXT_BASE_PATH,
2022-11-03 09:53:44 +03:00
};
2022-09-22 10:39:53 +03:00
const baseDir = process.env.LOCAL_BLOCK_SUITE ?? '/';
2023-02-19 11:40:39 +03:00
const withDebugLocal = debugLocal(
{
'@blocksuite/editor': path.resolve(baseDir, 'packages', 'editor'),
'@blocksuite/blocks/models': path.resolve(
baseDir,
'packages',
'blocks',
'src',
'models'
),
'@blocksuite/blocks/std': path.resolve(
baseDir,
'packages',
'blocks',
'src',
'std'
),
'@blocksuite/blocks': path.resolve(baseDir, 'packages', 'blocks'),
'@blocksuite/store': path.resolve(baseDir, 'packages', 'store'),
},
{
enable: enableDebugLocal,
}
);
2023-02-16 19:51:32 +03:00
const detectFirebaseConfig = () => {
if (!process.env.NEXT_PUBLIC_FIREBASE_API_KEY) {
console.warn('NEXT_PUBLIC_FIREBASE_API_KEY not found, please check it');
2023-02-16 19:51:32 +03:00
} else {
console.info('NEXT_PUBLIC_FIREBASE_API_KEY found');
2023-02-16 19:51:32 +03:00
}
};
detectFirebaseConfig();
2023-01-03 06:43:59 +03:00
2023-02-19 11:40:39 +03:00
export default withDebugLocal(nextConfig);