vue.config.js Vue打包配置详解

module.exports = {
//基本路径 文件打包后放的位置
publicPath:‘./’,

//默认输出文件夹为dist,填入的名字为打包后的文件名
outputDir:‘name’,

// 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录。资源放的目录
assetsDir: “./static”,

// 指定生成的 index.html 的输出路径 (相对于 outputDir)。也可以是一个绝对路径 index的路劲和名字
indexPath: ‘./index.html’,

//打包后是否生成map文件,map文件能看到错误代码位置,设置为false不生成map文件,打包体积缩小
productionSourceMap: false,

//dev环境下,webpack-dev-server 相关配置
devServer: {

   port: 8080//开发运行时的端口可以写成 process.env.VUE_APP_port 获取到.env.development中的VUE_APP_port
	host: 开发运行时域名,设置成'0.0.0.0'//运行之后的ip可以写成127.0.0.1
	https: 是否启用 https
	open: npm run serve 时是否直接打开浏览器
	progress: true, //是否启动进度日志
	hotOnly: false,//编译错误修改正确后不会重新刷新浏览器
	proxy: { //代理设置
  	'^/jsonProxy': {
        target: process.env.VUE_APP_proxy_target,
        changeOrigin: true, //跨域设置,默认true为跨域
        ws: false, //是否代理websockets
        pathRewrite: { //重写路径
          '^/jsonProxy': '/'
        }
      },
    }
}
pages:{
	index:{
        entry: 'src/main.js',// page 的入口
        template: 'public/index.html',//html文件路径 模板来源
        filename: './index.html',//html文件名
        title: 'name',//标题
         在这个页面中包含的块,默认情况下会包含提取出来的通用 chunk 和 vendor chunk,如果自己有配置 splitChunks 选项,可以在此添加,要一一对应名称config.optimization.splitChunks
        chunks: ['chunk-common', 'chunk-vendors', 'design-icons', 'ant-design-vue', 'jquery', 'echarts', 'components', 'utils', 'assets']
	}
}

configureWebpack:{
rules:[],
plugins: []
}
//或者下面这种写法
configureWebpack:config=>{
if (process.env.NODE_ENV === ‘production’) {
// 为生产环境修改配置…
} else {
// 为开发环境修改配置…
}
config.plugins.push()
}

chainWebpack:config=>{
//设置别名
config.resolve.alias
.set(‘@’, resolve(‘src’))
.set(‘api’, resolve(‘src/apis’))
.set(‘common’, resolve(‘src/common’))
// 移除 prefetch 插件
config.plugins.delete(‘prefetch’)
}
}

你可能感兴趣的:(HTML,vue.js,javascript,前端,webpack)