think/packages/client/next.config.js

48 lines
1.4 KiB
TypeScript
Raw Normal View History

2022-05-01 16:15:13 +00:00
const semi = require('@douyinfe/semi-next').default({});
2022-03-12 02:31:03 +00:00
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
const withPWA = require('next-pwa');
2022-03-12 02:31:03 +00:00
const { getConfig } = require('@think/config');
2022-03-26 14:02:26 +00:00
const config = getConfig();
2022-05-26 06:01:42 +00:00
const pwaRuntimeCaching = require('./pwa-cache');
2022-02-20 11:51:55 +00:00
2022-05-01 16:15:13 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = semi({
2022-05-28 07:13:25 +00:00
experimental: {
scrollRestoration: true,
legacyBrowsers: false,
browsersListForSwc: true,
},
2022-02-20 11:51:55 +00:00
assetPrefix: config.assetPrefix,
env: {
2022-05-01 16:15:13 +00:00
SERVER_API_URL: config.client.apiUrl,
COLLABORATION_API_URL: config.client.collaborationUrl,
ENABLE_ALIYUN_OSS: !!config.oss.aliyun.accessKeyId,
2022-05-22 02:33:08 +00:00
DNS_PREFETCH: (config.client.dnsPrefetch || '').split(' '),
SEO_APPNAME: config.client.seoAppName,
SEO_DESCRIPTION: config.client.seoDescription,
SEO_KEYWORDS: config.client.seoKeywords,
2022-02-20 11:51:55 +00:00
},
webpack: (config, { dev, isServer }) => {
config.resolve.plugins.push(new TsconfigPathsPlugin());
return config;
},
eslint: {
ignoreDuringBuilds: true,
},
2022-03-21 11:55:06 +00:00
// FIXME: douyinfe 的第三方包存在 ts 类型错误!
typescript: {
ignoreBuildErrors: true,
},
2022-05-18 09:04:08 +00:00
compiler: {
2022-06-02 20:27:15 +00:00
// removeConsole: process.env.NODE_ENV === 'production',
2022-05-18 09:04:08 +00:00
},
pwa: {
disable: process.env.NODE_ENV !== 'production',
dest: '.next',
sw: 'service-worker.js',
2022-05-26 06:01:42 +00:00
runtimeCaching: pwaRuntimeCaching,
2022-05-18 08:50:42 +00:00
},
2022-02-20 11:51:55 +00:00
});
module.exports = withPWA(nextConfig);