index.js

var path = require('path')//使用Node自带的文件路径插件
module.exports = {

  //生产环境配置
  build: {
     //http://vuejs-templates.github.io/webpack/backend.html
    // 使用 config/prod.env.js 中定义的编译环境

    env: require('./prod.env'),

    index: path.resolve(__dirname, '../dist/index.html'),   // 编译注入的 index.html 文件,必须是本地的绝对路径

    assetsRoot: path.resolve(__dirname, '../dist'),   // 编译输出的静态资源根路径

    assetsSubDirectory: 'static',    // 编译输出的二级目录

    assetsPublicPath: '/',    // 编译发布上线路径的根目录,可配置为资源服务器域名或 CDN 域名

    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,    // 是否开启 gzip

    productionGzipExtensions: ['js', 'css'],    // 需要使用 gzip 压缩的文件扩展名

    // 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    //一个实用工具,用于分析项目的依赖关系https://www.npmjs.com/package/webpack-bundle-analyzer
  },
  //开发环境
  dev: {

    env: require('./dev.env'),    // 使用 config/dev.env.js 中定义的编译环境

    port: 8080,    // 运行测试页面的端口

    autoOpenBrowser: true,    //是否自动打开浏览器

    assetsSubDirectory: 'static',    // 编译输出的二级目录

    assetsPublicPath: '/',    // 编译发布上线路径的根目录,可配置为资源服务器域名或 CDN 域名

    proxyTable: {
        //https://github.com/chimurai/http-proxy-middleware,配置方式
    },    // 需要 proxyTable 代理的接口(可跨域)http://vuejs-templates.github.io/webpack/proxy.html

    // CSS Sourcemaps off by default because relative paths are "buggy"
    // with this option, according to the CSS-Loader README
    // (https://github.com/webpack/css-loader#sourcemaps)
    // In our experience, they generally work as expected,
    // just be aware of this issue when enabling this option.

    cssSourceMap: false   // 是否开启 cssSourceMap
  }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值