zoukankan      html  css  js  c++  java
  • vue.config.js初始化配置

    let path = require('path')
    function resolve (dir) {
      return path.join(__dirname, dir)
    }

    module.exports = {
      baseUrl: './',
      outputDir: 'dist',
      lintOnSave: true,
      runtimeCompiler: true, //关键点在这

      // 调整内部的 webpack 配置。
      // 查阅 https://github.com/vuejs/vue-doc-zh-cn/vue-cli/webpack.md
      chainWebpack: config => {
        config.resolve.alias.set('@', resolve('src'))
      },
      configureWebpack: () => {},
      // 配置 webpack-dev-server 行为。
      devServer: {
        host: '0.0.0.0',
        port: 8080,
        proxy: {
          '/': {
            // target: 'http://www.xxxxxx.com/',
            target: 'http://192.168.0.0:8000/', //自己的ip地址
            changeOrigin: true,
            ws: false,
            pathRewrite: {
              '^/': ''
            }
          }
        }
      }

  • 相关阅读:
    碰撞器与触发器[Unity]
    Mesh属性[Unity]
    4.3之后的PingPong效果实现
    windows reload()
    浏览器的内核
    redis 1
    oauth 2.0转
    java 散列
    js 事件详解 冒泡
    HttpURLConnection和HttpClient的区别2(转)
  • 原文地址:https://www.cnblogs.com/Mr-Rshare/p/10436945.html
Copyright © 2011-2022 走看看