mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-21 11:43:56 +00:00
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
/** @type {import('next').NextConfig} */
|
|
const { i18n } = require('./next-i18next.config');
|
|
const path = require('path');
|
|
|
|
const nextConfig = {
|
|
i18n,
|
|
output: 'standalone',
|
|
reactStrictMode: process.env.NODE_ENV === 'development' ? false : true,
|
|
compress: true,
|
|
webpack(config, { isServer }) {
|
|
if (!isServer) {
|
|
config.resolve = {
|
|
...config.resolve,
|
|
fallback: {
|
|
...config.resolve.fallback,
|
|
fs: false
|
|
}
|
|
};
|
|
}
|
|
Object.assign(config.resolve.alias, {
|
|
'@mongodb-js/zstd': false,
|
|
'@aws-sdk/credential-providers': false,
|
|
snappy: false,
|
|
aws4: false,
|
|
'mongodb-client-encryption': false,
|
|
kerberos: false,
|
|
'supports-color': false,
|
|
'bson-ext': false
|
|
});
|
|
config.module = {
|
|
...config.module,
|
|
rules: config.module.rules.concat([
|
|
{
|
|
test: /\.svg$/i,
|
|
issuer: /\.[jt]sx?$/,
|
|
use: ['@svgr/webpack']
|
|
}
|
|
]),
|
|
exprContextCritical: false,
|
|
unknownContextCritical: false
|
|
};
|
|
|
|
return config;
|
|
},
|
|
transpilePackages: ['@fastgpt/*'],
|
|
experimental: {
|
|
serverComponentsExternalPackages: ['mongoose'],
|
|
outputFileTracingRoot: path.join(__dirname, '../../')
|
|
}
|
|
};
|
|
|
|
module.exports = nextConfig;
|