当前位置:   article > 正文

配置vue.config.js_vueconfig.js配置

vueconfig.js配置

1、配置vue.config.js


const path = require('path')
// const { VantResolver } = require('unplugin-vue-components/resolvers')
// const ComponentsPlugin = require('unplugin-vue-components/webpack')

module.exports = {
  /** 区分打包环境与开发环境
   * process.env.NODE_ENV==='production'  (打包环境)
   * process.env.NODE_ENV==='development' (开发环境)
   * baseUrl: process.env.NODE_ENV==='production'?"https://cdn.didabisai.com/front/":'front/',
   */
  publicPath: process.env.NODE_ENV === 'production' ? '/' : '/', // 部署生产环境和开发环境下的URL:可对当前环境进行区分
  outputDir: 'dist', // 输出文件目录:在npm run build时,生成文件的目录名称
  assetsDir: 'assets', // 放置生成的静态资源 (js、css、img、fonts) 的 (相对于 outputDir 的) 目录
  css: {
    loaderOptions: {
      less: {
        javascriptEnabled: true
      }
    }
  },
  pluginOptions: {
    'style-resources-loader': {
      preProcessor: 'less',
      patterns: [path.resolve(__dirname, './src/assets/less/variable.less')]
    }
  },
  devServer: {
    overlay: {
      warning: false,
      errors: false
    },
    // https: true,
    port: 9527,
    proxy: {
      '/xxx': { // 本地联调
        // target: 'http://192.168.1.148',
        target: 'http://192.168.1.171',
        // target: 'http://192.168.1.13',
        // target: 'http://192.168.1.106',
        changeOrigin: true,
        ws: true,
        pathRewrite: {
          '^/xxx': ''
        }
      }
    },
    disableHostCheck: true
  },
  chainWebpack: config => {
    // 隐藏console
    config.when(process.env.NODE_ENV !== 'development', config => {
      config.optimization.minimizer('terser').tap(options => {
        options[0].terserOptions.compress.drop_console = true
        return options
      })
    })
    // 修复热更新
    config.resolve.symlinks(true)
  },
  // 对象的形式配置configureWebpack
  // configureWebpack: {
  //   plugins: [
  //     ComponentsPlugin({
  //       resolvers: [VantResolver()],
  //     }),
  //   ]
  // }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69

2.配置package.json

    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build", // 正式打包
    "lint": "vue-cli-service lint",
    "test": "vue-cli-service build --mode development" // 测试打包
  • 1
  • 2
  • 3
  • 4

3.新建.env.development 存放测试地址

NODE_ENV="development"
VUE_APP_URL="https://测试.com"
  • 1
  • 2

4.新建.env.production 存放正式地址

NODE_ENV="production"
VUE_APP_URL="https://正式.com"
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/320642
推荐阅读
相关标签
  

闽ICP备14008679号