|
@@ -1,13 +1,13 @@
|
|
|
-'use strict'
|
|
|
-const path = require('path')
|
|
|
+'use strict';
|
|
|
+const path = require('path');
|
|
|
|
|
|
function resolve(dir) {
|
|
|
- return path.join(__dirname, dir)
|
|
|
+ return path.join(__dirname, dir);
|
|
|
}
|
|
|
|
|
|
-const name = '普定智慧停车大屏' // 标题
|
|
|
+const name = '普定智慧停车大屏'; // 标题
|
|
|
|
|
|
-const port = 8080 // 端口
|
|
|
+const port = 8080; // 端口
|
|
|
|
|
|
// vue.config.js 配置说明
|
|
|
//官方vue.config.js 参考文档 https://cli.vuejs.org/zh/config/#css-loaderoptions
|
|
@@ -46,19 +46,19 @@ module.exports = {
|
|
|
'@': resolve('src')
|
|
|
},
|
|
|
fallback: {
|
|
|
- path: false,
|
|
|
+ path: false
|
|
|
}
|
|
|
}
|
|
|
},
|
|
|
chainWebpack(config) {
|
|
|
- config.plugins.delete('preload') // TODO: need test
|
|
|
- config.plugins.delete('prefetch') // TODO: need test
|
|
|
-
|
|
|
+ config.plugins.delete('preload'); // TODO: need test
|
|
|
+ config.plugins.delete('prefetch'); // TODO: need test
|
|
|
+ config.plugin('html').tap((args) => {
|
|
|
+ args[0].title = name;
|
|
|
+ return args;
|
|
|
+ });
|
|
|
// set svg-sprite-loader
|
|
|
- config.module
|
|
|
- .rule('svg')
|
|
|
- .exclude.add(resolve('src/assets/icons'))
|
|
|
- .end()
|
|
|
+ config.module.rule('svg').exclude.add(resolve('src/assets/icons')).end();
|
|
|
config.module
|
|
|
.rule('icons')
|
|
|
.test(/\.svg$/)
|
|
@@ -69,49 +69,47 @@ module.exports = {
|
|
|
.options({
|
|
|
symbolId: 'icon-[name]'
|
|
|
})
|
|
|
- .end()
|
|
|
+ .end();
|
|
|
|
|
|
- config
|
|
|
- .when(process.env.NODE_ENV !== 'development',
|
|
|
- config => {
|
|
|
- config
|
|
|
- .plugin('ScriptExtHtmlWebpackPlugin')
|
|
|
- .after('html')
|
|
|
- .use('script-ext-html-webpack-plugin', [{
|
|
|
- // `runtime` must same as runtimeChunk name. default is `runtime`
|
|
|
- inline: /runtime\..*\.js$/
|
|
|
- }])
|
|
|
- .end()
|
|
|
- config
|
|
|
- .optimization.splitChunks({
|
|
|
- chunks: 'all',
|
|
|
- cacheGroups: {
|
|
|
- libs: {
|
|
|
- name: 'chunk-libs',
|
|
|
- test: /[\\/]node_modules[\\/]/,
|
|
|
- priority: 10,
|
|
|
- chunks: 'initial' // only package third parties that are initially dependent
|
|
|
- },
|
|
|
- elementUI: {
|
|
|
- name: 'chunk-elementUI', // split elementUI into a single package
|
|
|
- priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
- test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
|
|
|
- },
|
|
|
- commons: {
|
|
|
- name: 'chunk-commons',
|
|
|
- test: resolve('src/components'), // can customize your rules
|
|
|
- minChunks: 3, // minimum common number
|
|
|
- priority: 5,
|
|
|
- reuseExistingChunk: true
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- config.optimization.runtimeChunk('single'),
|
|
|
+ config.when(process.env.NODE_ENV !== 'development', (config) => {
|
|
|
+ config
|
|
|
+ .plugin('ScriptExtHtmlWebpackPlugin')
|
|
|
+ .after('html')
|
|
|
+ .use('script-ext-html-webpack-plugin', [
|
|
|
{
|
|
|
- from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
|
|
|
- to: './', //到根目录下
|
|
|
+ // `runtime` must same as runtimeChunk name. default is `runtime`
|
|
|
+ inline: /runtime\..*\.js$/
|
|
|
+ }
|
|
|
+ ])
|
|
|
+ .end();
|
|
|
+ config.optimization.splitChunks({
|
|
|
+ chunks: 'all',
|
|
|
+ cacheGroups: {
|
|
|
+ libs: {
|
|
|
+ name: 'chunk-libs',
|
|
|
+ test: /[\\/]node_modules[\\/]/,
|
|
|
+ priority: 10,
|
|
|
+ chunks: 'initial' // only package third parties that are initially dependent
|
|
|
+ },
|
|
|
+ elementUI: {
|
|
|
+ name: 'chunk-elementUI', // split elementUI into a single package
|
|
|
+ priority: 20, // the weight needs to be larger than libs and app or it will be packaged into libs or app
|
|
|
+ test: /[\\/]node_modules[\\/]_?element-ui(.*)/ // in order to adapt to cnpm
|
|
|
+ },
|
|
|
+ commons: {
|
|
|
+ name: 'chunk-commons',
|
|
|
+ test: resolve('src/components'), // can customize your rules
|
|
|
+ minChunks: 3, // minimum common number
|
|
|
+ priority: 5,
|
|
|
+ reuseExistingChunk: true
|
|
|
}
|
|
|
}
|
|
|
- )
|
|
|
+ });
|
|
|
+ config.optimization.runtimeChunk('single'),
|
|
|
+ {
|
|
|
+ from: path.resolve(__dirname, './public/robots.txt'), //防爬虫文件
|
|
|
+ to: './' //到根目录下
|
|
|
+ };
|
|
|
+ });
|
|
|
}
|
|
|
-}
|
|
|
+};
|