vue.config.js 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. const packageName = require('./package.json').name
  2. console.log(packageName)
  3. module.exports = {
  4. //路径前缀
  5. //打包配置,解决页面空白的配置方案。
  6. lintOnSave: true,
  7. runtimeCompiler: true,
  8. productionSourceMap: false,
  9. chainWebpack: (config) => {
  10. config.module
  11. .rule('fonts')
  12. .test(/.(ttf|otf|eot|woff|woff2)$/)
  13. .use('url-loader')
  14. .loader('url-loader')
  15. .tap((options) => {
  16. options = {
  17. // limit: 10000,
  18. name: '/static/fonts/[name].[ext]',
  19. }
  20. return options
  21. })
  22. },
  23. // chainWebpack: (config) => {
  24. // 忽略的打包文件
  25. // config.externals({
  26. // 'vue': 'Vue',
  27. // 'vue-router': 'VueRouter',
  28. // 'vuex': 'Vuex',
  29. // 'axios': 'axios',b
  30. // 'element-ui': 'ELEMENT',
  31. // });
  32. // const entry = config.entry('app');
  33. // entry.add('babel-polyfill').end();
  34. // entry.add('classlist-polyfill').end();
  35. // entry.add('@/mock').end();
  36. // },
  37. css: {
  38. extract: {
  39. ignoreOrder: true
  40. },
  41. },
  42. //开发模式反向代理配置,生产模式请使用Nginx部署并配置反向代理
  43. devServer: {
  44. port: 1777,
  45. headers: {
  46. 'Access-Control-Allow-Origin': '*',
  47. },
  48. proxy: {
  49. '/api': {
  50. //本地服务接口地址
  51. target: 'http://36.134.91.96:10001/api',
  52. // target: 'https://cfm.bytesail.cn/api',
  53. //远程演示服务地址,可用于直接启动项目
  54. //target: 'https://saber.bladex.vip/api',
  55. ws: true,
  56. pathRewrite: {
  57. '^/api': '/',
  58. },
  59. },
  60. '/file': {
  61. //本地服务接口地址
  62. target: 'http://36.134.91.96:10001',
  63. // target: 'https://cfm.bytesail.cn/api',
  64. //远程演示服务地址,可用于直接启动项目
  65. //target: 'https://saber.bladex.vip/api',
  66. ws: true,
  67. pathRewrite: {
  68. '^/api': '/',
  69. },
  70. },
  71. },
  72. },
  73. // 自定义webpack配置
  74. configureWebpack: {
  75. output: {
  76. library: `${packageName}-[name]`,
  77. libraryTarget: 'umd',
  78. jsonpFunction: `webpackJsonp_${packageName}`,
  79. },
  80. },
  81. }