vue.config.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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: { ignoreOrder: true },
  39. },
  40. //开发模式反向代理配置,生产模式请使用Nginx部署并配置反向代理
  41. devServer: {
  42. port: 1777,
  43. headers: {
  44. 'Access-Control-Allow-Origin': '*',
  45. },
  46. proxy: {
  47. '/api': {
  48. //本地服务接口地址
  49. target: 'http://36.134.91.96:10001/api',
  50. // target: 'https://cfm.bytesail.cn/api',
  51. //远程演示服务地址,可用于直接启动项目
  52. //target: 'https://saber.bladex.vip/api',
  53. ws: true,
  54. pathRewrite: {
  55. '^/api': '/',
  56. },
  57. },
  58. },
  59. },
  60. // 自定义webpack配置
  61. configureWebpack: {
  62. output: {
  63. library: `${packageName}-[name]`,
  64. libraryTarget: 'umd',
  65. jsonpFunction: `webpackJsonp_${packageName}`,
  66. },
  67. },
  68. }