vue.config.js 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // const Timestamp = new Date().getTime()
  2. module.exports = {
  3. devServer: {
  4. port: 8072,
  5. https:true,
  6. client: {
  7. progress: true,
  8. },
  9. proxy: {
  10. '^/api': {
  11. target: 'http://localhost:8070',
  12. ws: false,
  13. changeOrigin: true,
  14. logLevel: 'debug',
  15. pathRewrite: {
  16. '^/api': '/api',
  17. },
  18. }
  19. }
  20. },
  21. publicPath: '/mobile/',
  22. outputDir: '../src/main/resources/static/mobile',
  23. productionSourceMap: false,
  24. // configureWebpack: {
  25. // output: { // 输出重构 打包编译后的 文件名称 【模块名称.版本号(可选).时间戳】
  26. // filename: `[name].${Timestamp}.js`,
  27. // chunkFilename: `[name].${Timestamp}.js`
  28. // },
  29. // },
  30. // css: {
  31. // extract: { // 打包后css文件名称添加时间戳
  32. // filename: `css/[name].${Timestamp}.css`,
  33. // chunkFilename: `css/[name].${Timestamp}.css`
  34. // }
  35. // },
  36. }