Created
October 13, 2017 10:07
-
-
Save isuke/16b47b31e6924f4755f7d7a8ec2ba6f9 to your computer and use it in GitHub Desktop.
vue.js settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// Settings | |
// | |
Vue.config.debug = process.env.NODE_ENV == 'development'; | |
Vue.config.devtools = process.env.NODE_ENV == 'development'; | |
Vue.config.productionTip = process.env.NODE_ENV == 'development'; | |
Vue.config.silent = process.env.NODE_ENV != 'development'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
plugins = [ | |
new assetsPlugin | |
new webpack.DefinePlugin | |
'process.env': | |
NODE_ENV: JSON.stringify(process.env.NODE_ENV || 'development') | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment