我在应用程序中添加了一个 config.json。
在 webpack.config.js 我定义了 Config
externals: {
'Config': JSON.stringify(production ? require('./config.prod.json') : require('./config.dev.json'))
},
在应用程序中我需要配置并使用它
var Config = require('Config');
但是,webpack 将我的配置文件捆绑到 index.js(我的 webpack 输出文件)中,我不想要这个。我想让我的 config.json 与 index.js 分开为了实现这一点,我排除了我的 config.json 但它不起作用。
exclude: [/node_modules/, path.resolve(__dirname, 'config.dev.json'), path.resolve(__dirname, 'config.prod.json')]
如果我错过了什么,你能帮我吗?谢谢