Commit bf8c6248 authored by lipengcheng 's avatar lipengcheng

去掉注释

parent 052e36ed
...@@ -3,17 +3,17 @@ console.log('process.env:', process.env) ...@@ -3,17 +3,17 @@ console.log('process.env:', process.env)
console.log('process.env.NODE_ENV:', process.env.NODE_ENV) console.log('process.env.NODE_ENV:', process.env.NODE_ENV)
// //
switch (process.env.NODE_ENV) { switch (process.env.NODE_ENV) {
case 'development': case 'development':
baseUrl = 'http://localhost:3000/development' //开发环境url baseUrl = 'http://localhost:3000/development' //开发环境url
break break
case 'passports': // 注意这里的名字要和步骤二中设置的环境名字对应起来 case 'passports': // 注意这里的名字要和步骤二中设置的环境名字对应起来
baseUrl = 'http://localhost:3000/passports' //测试环境中的url baseUrl = 'http://localhost:3000/passports' //测试环境中的url
break break
case 'production': case 'production':
baseUrl = 'http://106.13.94.82:3000/production' //生产环境url baseUrl = 'http://106.13.94.82:3000/production' //生产环境url
break break
} }
export default baseUrl export default baseUrl
/*
* @Date: 2020-08-27 09:05:54
* @LastEditors: OBKoro1
* @LastEditTime: 2020-08-27 15:30:17
* @FilePath: /vue.config.js
* @Description: 描述
* @Author: huacong
* @
*/
// console.log(`process.env1:`, process.env); // console.log(`process.env1:`, process.env);
console.log('process.env.NODE_ENV1:', process.env.NODE_ENV) console.log('process.env.NODE_ENV1:', process.env.NODE_ENV)
module.exports = { module.exports = {
// outputDir: process.env.outputDir, // outputDir: process.env.outputDir,
// assetsDir: 'static', // assetsDir: 'static',
publicPath: '/', publicPath: '/',
devServer: { devServer: {
open: true, open: true,
// host: '0.0.0.0', // host: '0.0.0.0',
port: 3018, port: 3018,
https: false, https: false,
hotOnly: false, hotOnly: false,
proxy: { proxy: {
webapi: { webapi: {
target: 'https://test2.laihua.com/', target: 'https://test2.laihua.com/',
ws: true, ws: true,
changeOrigin: true, changeOrigin: true,
pathRewrite: { '^/webapi': '/' } pathRewrite: { '^/webapi': '/' }
} }
}
},
chainWebpack: (config) => {
config.module
.rule('eslint')
.use('eslint-loader')
.loader('eslint-loader')
.tap((options) => {
// 保存自动eslint修复
options.fix = true
return options
})
},
css: {
loaderOptions: {
sass: {
prependData: '@import "@/assets/style/index.scss";'
}
}
} }
},
chainWebpack: (config) => {
config.module
.rule('eslint')
.use('eslint-loader')
.loader('eslint-loader')
.tap((options) => {
// 保存自动eslint修复
options.fix = true
return options
})
},
css: {
loaderOptions: {
sass: {
prependData: '@import "@/assets/style/index.scss";'
}
}
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment