gpt4 book ai didi

多 ./src/index.js ./dist/bundle.js 中的 webpack 错误

转载 作者:行者123 更新时间:2023-12-04 02:33:52 25 4
gpt4 key购买 nike

配置中的警告
'mode' 选项尚未设置。将 'mode' 选项设置为 'development' 或 'production' 以启用此环境的默认值。
多 ./src/index.js ./dist/bundle.js 中的错误

最佳答案

以下是来自 webpack 的帮助信息,输入 webpack --help webpack 4

Usage without config file: webpack <entry> [<entry>] --output [-o] <output>

注意:--output 需要明确指定

解决方案:
webpack src/index.js --output dist/bundle.js --mode development

如果您使用的是 webpack.config.js :
const path = require('path');

module.exports = {
mode: 'development', // set mode option, 'development' or 'production'
entry: './src/index.js',
output: {
path: path.resolve(__dirname,'dist'),
filename: "bundle.js"
}
};

关于多 ./src/index.js ./dist/bundle.js 中的 webpack 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49006389/

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