vue.config.js 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // const webpack = require('webpack')
  2. module.exports = {
  3. //baseUrl: './',// 部署应用时的根路径(默认'/'),也可用相对路径(存在使用限制)
  4. publicPath: './',// 部署应用时的根路径(默认'/'),也可用相对路径(存在使用限制)
  5. outputDir: 'dist/client',// 运行时生成的生产环境构建文件的目录(默认''dist'',构建之前会被清除)
  6. assetsDir: '',//放置生成的静态资源(s、css、img、fonts)的(相对于 outputDir 的)目录(默认'')
  7. indexPath: 'index.html',//指定生成的 index.html 的输出路径(相对于 outputDir)也可以是一个绝对路径。
  8. pages: {//pages 里配置的路径和文件名在你的文档目录必须存在 否则启动服务会报错
  9. index: {//除了 entry 之外都是可选的
  10. entry: 'src/main.js',// page 的入口,每个“page”应该有一个对应的 JavaScript 入口文件
  11. template: 'public/index.html',// 模板来源
  12. filename: 'index.html',// 在 dist/index.html 的输出
  13. title: '',// 当使用 title 选项时,在 template 中使用:<title><%= htmlWebpackPlugin.options.title %></title>
  14. chunks: ['chunk-vendors', 'chunk-common', 'index'] // 在这个页面中包含的块,默认情况下会包含,提取出来的通用 chunk 和 vendor chunk
  15. },
  16. subpage: 'src/main.js'//官方解释:当使用只有入口的字符串格式时,模板会被推导为'public/subpage.html',若找不到就回退到'public/index.html',输出文件名会被推导为'subpage.html'
  17. },
  18. lintOnSave: false,// 是否在保存的时候检查
  19. productionSourceMap: false,// 生产环境是否生成 sourceMap 文件,false表示隐藏vue代码
  20. css: {
  21. extract: true,// 是否使用css分离插件 ExtractTextPlugin
  22. sourceMap: false,// 开启 CSS source maps
  23. loaderOptions: {},// css预设器配置项
  24. requireModuleExtension: false// 启用 CSS modules for all css / pre-processor files.
  25. },
  26. devServer: {// 环境配置
  27. host: '0.0.0.0',
  28. port: 8081,
  29. hot:true,//自动保存
  30. open: true, //配置自动启动浏览器
  31. proxy: {// 配置多个代理(配置一个 proxy: 'http://localhost:4000' )
  32. '/fxc': {
  33. target: `https://fxc.vandh.cn/prod-api/`,
  34. changeOrigin: true,
  35. pathRewrite: {
  36. '^/fxc': ""
  37. }
  38. }
  39. }
  40. },
  41. pluginOptions: {// 第三方插件配置
  42. },
  43. }