|
@@ -1,46 +1,17 @@
|
|
|
const path = require('path')
|
|
|
const webpack = require('webpack')
|
|
|
-const ThemeColorReplacer = require('webpack-theme-color-replacer')
|
|
|
-const generate = require('@ant-design/colors/lib/generate').default
|
|
|
+const createThemeColorReplacerPlugin = require('./config/plugin.config')
|
|
|
|
|
|
function resolve (dir) {
|
|
|
return path.join(__dirname, dir)
|
|
|
}
|
|
|
|
|
|
|
|
|
-module.exports = {
|
|
|
+const vueConfig = {
|
|
|
configureWebpack: {
|
|
|
plugins: [
|
|
|
|
|
|
- new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
|
|
|
-
|
|
|
-
|
|
|
- new ThemeColorReplacer({
|
|
|
- fileName: 'css/theme-colors-[contenthash:8].css',
|
|
|
- matchColors: getAntdSerials('#1890ff'),
|
|
|
-
|
|
|
- changeSelector (selector) {
|
|
|
- switch (selector) {
|
|
|
- case '.ant-calendar-today .ant-calendar-date':
|
|
|
- return ':not(.ant-calendar-selected-date):not(.ant-calendar-selected-day)' + selector
|
|
|
- case '.ant-btn:focus,.ant-btn:hover':
|
|
|
- return '.ant-btn:focus:not(.ant-btn-primary),.ant-btn:hover:not(.ant-btn-primary)'
|
|
|
- case '.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon':
|
|
|
- return ':not(.ant-steps-item-process)' + selector
|
|
|
- case '.ant-btn.active,.ant-btn:active':
|
|
|
- return '.ant-btn.active:not(.ant-btn-primary),.ant-btn:active:not(.ant-btn-primary)'
|
|
|
- case '.ant-menu-horizontal>.ant-menu-item-active,.ant-menu-horizontal>.ant-menu-item-open,.ant-menu-horizontal>.ant-menu-item-selected,.ant-menu-horizontal>.ant-menu-item:hover,.ant-menu-horizontal>.ant-menu-submenu-active,.ant-menu-horizontal>.ant-menu-submenu-open,.ant-menu-horizontal>.ant-menu-submenu-selected,.ant-menu-horizontal>.ant-menu-submenu:hover':
|
|
|
- case '.ant-menu-horizontal > .ant-menu-item-active,.ant-menu-horizontal > .ant-menu-item-open,.ant-menu-horizontal > .ant-menu-item-selected,.ant-menu-horizontal > .ant-menu-item:hover,.ant-menu-horizontal > .ant-menu-submenu-active,.ant-menu-horizontal > .ant-menu-submenu-open,.ant-menu-horizontal > .ant-menu-submenu-selected,.ant-menu-horizontal > .ant-menu-submenu:hover':
|
|
|
- return '.ant-menu-horizontal > .ant-menu-item-active,.ant-menu-horizontal > .ant-menu-item-open,.ant-menu-horizontal > .ant-menu-item-selected,.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-item:hover,.ant-menu-horizontal > .ant-menu-submenu-active,.ant-menu-horizontal > .ant-menu-submenu-open,.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu-selected,.ant-menu-horizontal:not(.ant-menu-dark) > .ant-menu-submenu:hover'
|
|
|
- case '.ant-menu-horizontal > .ant-menu-item-selected > a':
|
|
|
- return ':not(.ant-menu-horizontal)' + selector
|
|
|
- case '.ant-menu-horizontal > .ant-menu-item > a:hover':
|
|
|
- return ':not(.ant-menu-horizontal)' + selector
|
|
|
- default :
|
|
|
- return selector
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
+ new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/)
|
|
|
]
|
|
|
},
|
|
|
|
|
@@ -63,32 +34,17 @@ module.exports = {
|
|
|
.options({
|
|
|
name: 'assets/[name].[hash:8].[ext]'
|
|
|
})
|
|
|
-
|
|
|
- .resourceQuery(/inline/)
|
|
|
- .use('vue-svg-loader')
|
|
|
- .loader('vue-svg-loader')
|
|
|
- .end()
|
|
|
- .end()
|
|
|
- .oneOf('external')
|
|
|
- .use('file-loader')
|
|
|
- .loader('file-loader')
|
|
|
- .options({
|
|
|
- name: 'assets/[name].[hash:8].[ext]'
|
|
|
- })
|
|
|
- */
|
|
|
},
|
|
|
|
|
|
css: {
|
|
|
loaderOptions: {
|
|
|
less: {
|
|
|
modifyVars: {
|
|
|
-
|
|
|
+
|
|
|
|
|
|
-
|
|
|
- 'primary-color': '#F5222D',
|
|
|
- 'link-color': '#F5222D',
|
|
|
- 'border-radius-base': '4px',
|
|
|
- */
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
},
|
|
|
javascriptEnabled: true
|
|
|
}
|
|
@@ -98,9 +54,9 @@ module.exports = {
|
|
|
devServer: {
|
|
|
|
|
|
port: 8000
|
|
|
+
|
|
|
|
|
|
|
|
|
-
|
|
|
|
|
|
|
|
|
|
|
@@ -115,11 +71,10 @@ module.exports = {
|
|
|
transpileDependencies: []
|
|
|
}
|
|
|
|
|
|
-function getAntdSerials (color) {
|
|
|
-
|
|
|
- const lightens = new Array(9).fill().map((t, i) => {
|
|
|
- return ThemeColorReplacer.varyColor.lighten(color, i / 10)
|
|
|
- })
|
|
|
- const colorPalettes = generate(color)
|
|
|
- return lightens.concat(colorPalettes)
|
|
|
+
|
|
|
+if (process.env.NODE_ENV !== 'production' || process.env.VUE_APP_PREVIEW === 'true') {
|
|
|
+
|
|
|
+ vueConfig.configureWebpack.plugins.push(createThemeColorReplacerPlugin())
|
|
|
}
|
|
|
+
|
|
|
+module.exports = vueConfig
|