美文网首页
vue3.0配置vue.config.js

vue3.0配置vue.config.js

作者: 流过 | 来源:发表于2018-12-17 18:58 被阅读0次
    module.exports = {
        baseUrl: '/',
        outputDir: 'dist',
        lintOnSave: true,
        runtimeCompiler: true, //关键点在这  
        // 调整内部的 webpack 配置。
        // 查阅 https://github.com/vuejs/vue-doc-zh-cn/vue-cli/webpack.md
        chainWebpack: () => {},
        configureWebpack: () => {},
        // 配置 webpack-dev-server 行为。
        devServer: {
          open: process.platform === 'darwin',
          host: '0.0.0.0',
          port: 8080,
          https: false,
          hotOnly: false,
          // 查阅 https://github.com/vuejs/vue-doc-zh-cn/vue-cli/cli-service.md#配置代理
          proxy: null, // string | Object
          before: app => {}
        }
      }
    

    相关文章

      网友评论

          本文标题:vue3.0配置vue.config.js

          本文链接:https://www.haomeiwen.com/subject/omgckqtx.html