我有一個環境的具體config.js文件看起來像這樣:如何從配置文件加載/寫入環境特定的細節到webpack生成的budle js文件?
module.exports = {
local: {
apiHost: 'http://localhost',
apiPort: '3003',
},
development: {
apiHost: 'http://192.168.1.49',
apiPort: '3003',
},
testing: {
apiHost: 'http://192.168.1.50',
apiPort: '3003',
}
}
要使用這個文件我寫: -
const config = require('./config.js')[env];
加載在我的WebPack config.js的一切( v-1)生成的bundle.js文件。我只想將特定於環境的細節寫入bundle.js文件,不想公開bundle.js文件中的所有環境細節。
我該怎麼做?
我不想創建多發的環境文件。 –