详解vue.js根据不同环境(正式、测试)打包到不同目录
(编辑:jimmy 日期: 2024/11/7 浏览:3 次 )
1、在build文件夹中创建testing.js文件
// 配置环境变量 type 为 testing process.env.type = '"testing"' // 引入build.js文件 require('./build')
2、修改config文件夹中的prod.env.js文件
module.exports = { NODE_ENV: '"production"', // 将上文设置的环境变量,赋值到 type 属性上 type: process.env.type }
3、在package.json文件中添加npm run testing命令
"testing": "node build/testing.js", // 添加testing命令 "build": "node build/build.js"
4、config ->index.js中把build这个命令复制一份改成testing(此步为了打包到不同文件夹)
build: { env: require('./prod.env'), // Template for index.html index: path.resolve(__dirname, '../dist/index.html'), // Paths assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: '/mshop/', /** * Source Maps */ productionSourceMap: true, // https://webpack.js.org/configuration/devtool/#production devtool: '#source-map', // Gzip off by default as many popular static hosts such as // Surge or Netlify already gzip all static assets for you. // Before setting to `true`, make sure to: // npm install --save-dev compression-webpack-plugin productionGzip: false, productionGzipExtensions: ['js', 'css'], // Run the build command with an extra argument to // View the bundle analyzer report after build finishes: // `npm run build --report` // Set to `true` or `false` to always turn it on or off bundleAnalyzerReport: process.env.npm_config_report }, testing: { env: require('./prod.env'), index: path.resolve(__dirname, '../testing/index.html'), assetsRoot: path.resolve(__dirname, '../testing'), assetsSubDirectory: 'static', assetsPublicPath: '/', productionSourceMap: true, // Gzip off by default as many popular static hosts such as // Surge or Netlify already gzip all static assets for you. // Before setting to `true`, make sure to: // npm install --save-dev compression-webpack-plugin productionGzip: false, productionGzipExtensions: ['js', 'css'], // Run the build command with an extra argument to // View the bundle analyzer report after build finishes: // `npm run build --report` // Set to `true` or `false` to always turn it on or off bundleAnalyzerReport: process.env.npm_config_report },
5、修改build->webpack.prod.conf文件
修改filename
new HtmlWebpackPlugin({ filename: process.env.type == '"testing"' "htmlcode">output: { path: process.env.type == '"testing"' "codetitle">复制代码 代码如下:rm(path.join(process.env.type == '"testing"' "testing"' "htmlcode">let baseURL if (process.env.NODE_ENV === 'production') { if (process.env.type === 'testing') { // 测试环境 baseUrl = '测试环境地址' } else { // 正式环境 baseUrl = '正式环境地址' } } else { // 本地环境 baseUrl = '本地环境地址' }最后执行:
npm run testing 就会执行测试环境配置的地址,并生成testing文件夹
npm run build就会执行正式环境配置的地址,并生成dist文件夹以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:Angular5.0 子组件通过service传递值给父组件的方法
高通和谷歌日前宣布,推出首次面向搭载骁龙的Windows PC的优化版Chrome浏览器。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。
在对骁龙X Elite参考设计的初步测试中,全新的Chrome浏览器在Speedometer 2.1基准测试中实现了显著的性能提升。
预计在2024年年中之前,搭载骁龙X Elite计算平台的PC将面世。该浏览器的提前问世,有助于骁龙PC问世就获得满血表现。
谷歌高级副总裁Hiroshi Lockheimer表示,此次与高通的合作将有助于确保Chrome用户在当前ARM兼容的PC上获得最佳的浏览体验。