gpt4 book ai didi

node.js - webpack-node-externals - JavaScript 堆内存不足

转载 作者:太空宇宙 更新时间:2023-11-04 01:45:48 36 4
gpt4 key购买 nike

这是Webpack 配置:

const webpack = require('webpack');
const nodeExternals = require('webpack-node-externals');

module.exports = {
entry: './server/index.js',
target: 'node',
externals: [nodeExternals()],
output: {
path: __dirname,
filename: 'server.js',
publicPath: '/'
},
module: {
rules: [
{
test: /\.(js)$/,
use: 'babel-loader'
}
]
},
plugins: [
new webpack.DefinePlugin({
__isBrowser__: "false"
})
]
};

我已经像这样配置了 webpack 命令:

NODE_ENV=production node --max-old-space-size=2048 node_modules/webpack/bin/webpack --config webpack.server.js --mode=production

命令 --max-old-space-size 配置了 2 GB RAM,但还不够,我仍然遇到错误...

enter image description here

我的电脑有 4 GB RAM。

套餐:

enter image description here

如何解决这个问题?

最佳答案

我可以解决这个问题,我有 MongoDB、MySQL、Docker、Chrome 和其他正在运行的东西,因此我的 RAM 在那一刻无法正常工作 xD。

关于node.js - webpack-node-externals - JavaScript 堆内存不足,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51547873/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com