vue-cli3 配合 webpack 配置详解(vue.config.js)

综述:vue-cli3.0配置总结,与webpack搭配使用

参考文章:https://blog.csdn.net/Hampton_Chen/article/details/88931567

                  https://recomm.cnblogs.com/blogpost/10334865

                  https://www.cnblogs.com/jiekzou/p/12923393.html

1.组件全套配置及说明

module.exports = {
    // 部署应用时的基本 URL
    baseUrl: process.env.NODE_ENV === 'production' ? '192.168.60.110:8080' :             '192.168.60.110:8080',
    // build时构建文件的目录 构建时传入 --no-clean 可关闭该行为
    outputDir: 'dist',
    // build时放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
    assetsDir: '',
    // 指定生成的 index.html 的输出路径 (相对于 outputDir)。也可以是一个绝对路径。
    indexPath: 'index.html',
    // 默认在生成的静态资源文件名中包含hash以控制缓存
    filenameHashing: true,
    // 构建多页面应用,页面的配置
    pages: {
        index: {
        entry: 'src/index/main.js',  // page 的入口
        // 模板来源
        template: 'public/index.html',
        // 在 dist/index.html 的输出
        filename: 'index.html',
        // 当使用 title 选项时,template 中的 title 标签需要是 <%=             htmlWebpackPlugin.options.title %>
        title: 'Index Page',
        // 在这个页面中包含的块,默认情况下会包含
        //commons 用于个人定义的模块被重复引用,vendor 用于npm引入的包被重复引用了
        // indexjs用于你自己写的没有复用的代码内容
        chunks: ['chunk-vendors', 'chunk-common', 'index']
        },
        // 当使用只有入口的字符串格式时,模板会被推导为 `public/subpage.html`,并且如果找不到的话,就回退到 `public/index.html`。
        // 输出文件名会被推导为 `subpage.html`。
    subpage: 'src/subpage/main.js'
},
    // 是否在开发环境下通过 eslint-loader 在每次保存时 lint 代码 (在生产构建时禁用 eslint-loader)
    lintOnSave: process.env.NODE_ENV !== 'production',
    // 是否使用包含运行时编译器的 Vue 构建版本
    runtimeCompiler: false,
    // Babel 显式转译列表
    transpileDependencies: [],
    // 如果你不需要生产环境的 source map,可以将其设置为 false 以加速生产环境构建
    productionSourceMap: true,
    // 设置生成的 HTML 中 
                    
                    

你可能感兴趣的:(前端工具,前端)