vue.config.js 696 B

123456789101112131415161718192021222324
  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://localhost:8085',
  16. target: 'http://119.23.22.31:32009',
  17. // target: 'http://119.23.22.31:31588',
  18. autoRewrite: true,
  19. ws: false
  20. }
  21. },
  22. port: 3000
  23. }
  24. }