vue.config.js 565 B

12345678910111213141516171819202122
  1. module.exports = {
  2. outputDir: 'static',
  3. css: {
  4. loaderOptions: {
  5. sass: {
  6. data: `@import "@/sass/_variables.scss";` //加载全局scss文件
  7. }
  8. }
  9. },
  10. productionSourceMap:false,
  11. runtimeCompiler: true, //开启运行时模版编译,否则不可使用动态模版
  12. devServer: {
  13. proxy: {
  14. '/': {
  15. target: 'http://119.23.22.31:32002',
  16. autoRewrite: true,
  17. ws: false
  18. }
  19. },
  20. port: 3000
  21. }
  22. }