vue.config.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. const path = require('path');
  2. const common = path.resolve(__dirname, '../baoan-common');
  3. module.exports = {
  4. // publicPath: `/${process.env.VUE_APP_ROUTER}`,
  5. publicPath: `/`,
  6. outputDir: process.env.VUE_APP_ROUTER,
  7. productionSourceMap: false,
  8. configureWebpack: (config) => {
  9. Object.assign(config, {
  10. resolve: {
  11. alias: {
  12. '@': path.resolve(__dirname, './src'),
  13. '@c': path.resolve(__dirname, './src/components'),
  14. '@a': path.resolve(__dirname, './src/assets'),
  15. '@common': common,
  16. },
  17. },
  18. });
  19. },
  20. pluginOptions: {
  21. electronBuilder: {
  22. nodeIntegration: true,
  23. outputDir: 'electron_bulid', //打包后输出的目录名
  24. builderOptions: {
  25. productName: '保安考试', //包名
  26. appId: 'com.baoan.exam', //项目id
  27. files: ['**/*'],
  28. extraFiles: [
  29. {
  30. from: './resource/*', // 项目资源
  31. to: './resource', // 打包后输出到的按照目录资源
  32. },
  33. ],
  34. win: {
  35. icon: './public/logo.ico',
  36. },
  37. },
  38. },
  39. },
  40. devServer: {
  41. port: '11203',
  42. // proxy: {
  43. // '/files': {
  44. // target: 'http://106.12.161.200', //http://baoan.fwedzgc.com:8090
  45. // },
  46. // '/api/position': {
  47. // target: 'http://106.12.161.200',
  48. // changeOrigin: true,
  49. // ws: false,
  50. // },
  51. // '/api/exam': {
  52. // target: 'http://127.0.0.1:6104',
  53. // changeOrigin: true,
  54. // ws: false,
  55. // },
  56. // '/api': {
  57. // target: 'http://127.0.0.1:6100',
  58. // changeOrigin: true,
  59. // ws: false,
  60. // },
  61. // },
  62. },
  63. };