从3.0 开始,之前的build和config文件夹就取消了。
    如果需要更改配置,只需要在项目的根目录下新建 vue.config.js 文件,来覆盖项目的配置。(是根目录,不是src目录)
    语法

    1. module.exports = {
    2. // 基本路径 baseURL已经过时
    3. publicPath: './',
    4. // 输出文件目录
    5. outputDir: 'dist',
    6. // eslint-loader 是否在保存的时候检查
    7. lintOnSave: true,
    8. // use the full build with in-browser compiler?
    9. // https://vuejs.org/v2/guide/installation.html#Runtime-Compiler-vs-Runtime-only
    10. // compiler: false,
    11. // webpack配置
    12. // see https://github.com/vuejs/vue-cli/blob/dev/docs/webpack.md
    13. chainWebpack: () => {},
    14. configureWebpack: () => {},
    15. // vue-loader 配置项
    16. // https://vue-loader.vuejs.org/en/options.html
    17. // vueLoader: {},
    18. // 生产环境是否生成 sourceMap 文件
    19. productionSourceMap: true,
    20. // css相关配置
    21. css: {
    22. // 是否使用css分离插件 ExtractTextPlugin
    23. extract: true,
    24. // 开启 CSS source maps?
    25. sourceMap: false,
    26. // css预设器配置项
    27. loaderOptions: {},
    28. // 启用 CSS modules for all css / pre-processor files.
    29. modules: false
    30. },
    31. // use thread-loader for babel & TS in production build
    32. // enabled by default if the machine has more than 1 cores
    33. parallel: require('os').cpus().length > 1,
    34. // 是否启用dll
    35. // See https://github.com/vuejs/vue-cli/blob/dev/docs/cli-service.md#dll-mode
    36. // dll: false,
    37. // PWA 插件相关配置
    38. // see https://github.com/vuejs/vue-cli/tree/dev/packages/%40vue/cli-plugin-pwa
    39. pwa: {},
    40. // webpack-dev-server 相关配置
    41. devServer: {
    42. open: process.platform === 'darwin',
    43. host: '0.0.0.0',//如果是真机测试,就使用这个IP
    44. port: 1234,
    45. https: false,
    46. hotOnly: false,
    47. proxy: null, // 设置代理
    48. before: app => {}
    49. },
    50. // 第三方插件配置
    51. pluginOptions: {
    52. // ...
    53. }
    54. }

    Vue.config.js配置跨域

    1. devServer: {
    2. open: true, //浏览器自动打开页面
    3. host: "0.0.0.0", //如果是真机测试,就使用这个IP
    4. port: 8911,
    5. https: false,
    6. hotOnly: false, //热更新(webpack已实现了,这里false即可)
    7. proxy: {
    8. //配置跨域
    9. '/api': {
    10. target: "http://192.168.234.237:8886/api",
    11. ws:true,
    12. changOrigin:true,
    13. pathRewrite:{
    14. '^/api':'/'
    15. }
    16. }
    17. }
    18. }
    19. //调用
    20. this.$http.get('/api/order/getOrder')
    21. .then(res => {
    22. console.log(res.data);
    23. })
    24. .catch(err => {
    25. console.log(err.data.message);
    26. });