mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-05-19 20:20:16 +09:00
Merge d5c86ce9ab
into 3809375694
This commit is contained in:
commit
e12785db85
@ -21,9 +21,25 @@ const nextConfig = {
|
||||
}
|
||||
|
||||
config.resolve.fallback = {
|
||||
...config.resolve.fallback,
|
||||
child_process: false,
|
||||
process: false,
|
||||
path: false,
|
||||
fs: false,
|
||||
os: false,
|
||||
util: false,
|
||||
stream: false,
|
||||
buffer: require.resolve('buffer/'),
|
||||
events: require.resolve('events/'),
|
||||
};
|
||||
|
||||
config.plugins.push(
|
||||
new webpack.ProvidePlugin({
|
||||
Buffer: ['buffer', 'Buffer'],
|
||||
process: 'process/browser',
|
||||
}),
|
||||
);
|
||||
|
||||
return config;
|
||||
},
|
||||
output: mode,
|
||||
|
Loading…
Reference in New Issue
Block a user