好比在webpack.config.js中的plugins中加入html
new webpack.DefinePlugin({ 'process.env.NODE_ENV': JSON.stringify('production'), IS_SIGN: JSON.stringify('prodsign') }),
而後就能夠根據IS_SIGN來判斷了webpack
/* global IS_SIGN:true */ console.log(IS_SIGN); switch (IS_SIGN) { case 'localsign': API = 'http://192.168.1.xx:9090/'; WEB = 'http://192.168.1.xx:8080/'; break; case 'testsign': API = 'http://192.168.1.xx:9090/'; WEB = 'http://heiyanquan.github.com/test.html'; break; case 'prodsign': API = 'http://192.168.1.xx:9090/'; WEB = 'http://heiyanquan.github.com/index.html'; break; }
須要注意的是,若是你在webpack裏整合了ESLint,那麼,因爲ESLint會檢測沒有定義的變量(ESLint要求使用全局變量時要用window.xxxxx的寫法),所以須要一個global註釋聲明(/ global IS_PRODUCTION:true /)IS_SIGN是一個全局變量來規避warning。git