vue.config.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. const path = require('path');
  2. const Setting = require('./src/setting.env');
  3. // 引入打包分析文件
  4. const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
  5. // 引入js打包工具
  6. const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
  7. const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');
  8. const resolve = (dir) => {
  9. return path.join(__dirname, dir);
  10. };
  11. // 项目部署基础
  12. // 默认情况下,我们假设你的应用将被部署在域的根目录下,
  13. // 例如:https://www.my-app.com/
  14. // 默认:'/'
  15. // 如果您的应用程序部署在子路径中,则需要在这指定子路径
  16. // 例如:https://www.foobar.com/my-app/
  17. // 需要将它改为'/my-app/'
  18. // iview-admin线上演示打包路径: https://file.iviewui.com/admin-dist/
  19. const BASE_URL = process.env.NODE_ENV === 'production' ? '/' : '/';
  20. const env = process.env.NODE_ENV;
  21. module.exports = {
  22. // Project deployment base
  23. // By default we assume your app will be deployed at the root of a domain,
  24. // e.g. https://www.my-app.com/
  25. // If your app is deployed at a sub-path, you will need to specify that
  26. // sub-path here. For example, if your app is deployed at
  27. // https://www.foobar.com/my-app/
  28. // then change this to '/my-app/'
  29. outputDir: Setting.outputDir,
  30. runtimeCompiler: true,
  31. productionSourceMap: false, //关闭生产环境下的SourceMap映射文件
  32. baseUrl: BASE_URL,
  33. // tweak internal webpack configuration.
  34. // see https://github.com/vuejs/vue-cli/blob/dev/docs/webpack.md
  35. // 如果你不需要使用eslint,把lintOnSave设为false即可
  36. lintOnSave: false,
  37. // 打包优化
  38. // 打包优化
  39. configureWebpack: (config) => {
  40. const pluginsPro = [new BundleAnalyzerPlugin()];
  41. pluginsPro.push(
  42. // js文件压缩
  43. new UglifyJsPlugin({
  44. uglifyOptions: {
  45. compress: {
  46. drop_debugger: true,
  47. drop_console: true, //生产环境自动删除console
  48. pure_funcs: ['console.log'], //移除console
  49. },
  50. },
  51. sourceMap: false,
  52. parallel: true, //使用多进程并行运行来提高构建速度。默认并发运行数:os.cpus().length - 1。
  53. }),
  54. );
  55. if (process.env.NODE_ENV === 'production') {
  56. config.plugins = [...config.plugins, ...pluginsPro];
  57. }
  58. if (process.env.NODE_ENV === 'production') {
  59. // 开启分离js
  60. // config.optimization = {
  61. // runtimeChunk: 'single',
  62. // splitChunks: {
  63. // chunks: 'all',
  64. // maxInitialRequests: Infinity,
  65. // minSize: 20000,
  66. // cacheGroups: {
  67. // vendor: {
  68. // test: /[\\/]node_modules[\\/]/,
  69. // name(module) {
  70. // // get the name. E.g. node_modules/packageName/not/this/part.js
  71. // // or node_modules/packageName
  72. // const packageName = module.context.match(/[\\/]node_modules[\\/](.*?)([\\/]|$)/)[1];
  73. // // npm package names are URL-safe, but some servers don't like @ symbols
  74. // return `npm.${packageName.replace('@', '')}`;
  75. // },
  76. // },
  77. // },
  78. // },
  79. // };
  80. }
  81. },
  82. chainWebpack: (config) => {
  83. config.resolve.alias
  84. .set('@', resolve('src')) // key,value自行定义,比如.set('@@', resolve('src/components'))
  85. .set('_c', resolve('src/components'));
  86. // 使用 iView Loader
  87. config.module
  88. .rule('vue')
  89. .test(/\.vue$/)
  90. .use('iview-loader')
  91. .loader('iview-loader')
  92. .tap(() => {
  93. return Setting.iviewLoaderOptions;
  94. })
  95. .end();
  96. // 重新设置 alias
  97. config.resolve.alias.set('@api', resolve('src/api'));
  98. // node
  99. config.node.set('__dirname', true).set('__filename', true);
  100. // 判断是否需要加入模拟数据
  101. const entry = config.entry('app');
  102. if (Setting.isMock) {
  103. entry.add('@/mock').end();
  104. }
  105. config.plugin('monaco').use(new MonacoWebpackPlugin());
  106. },
  107. // 设为false打包时不生成.map文件
  108. productionSourceMap: false,
  109. // 这里写你调用接口的基础路径,来解决跨域,如果设置了代理,那你本地开发环境的axios的baseUrl要写为 '' ,即空字符串
  110. devServer: {
  111. port: 1617, // 端口
  112. },
  113. publicPath: '/admin',
  114. assetsDir: 'system_static',
  115. indexPath: 'index.html',
  116. };