4 changed files with 59 additions and 50 deletions
@ -1,46 +0,0 @@ |
|||||
const path = require('path'); |
|
||||
|
|
||||
export default { |
|
||||
entry: 'src/index.js', |
|
||||
extraBabelPlugins: [['import', { libraryName: 'antd', libraryDirectory: 'es', style: true }]], |
|
||||
env: { |
|
||||
development: { |
|
||||
extraBabelPlugins: ['dva-hmr'], |
|
||||
}, |
|
||||
}, |
|
||||
externals: { |
|
||||
'@antv/data-set': 'DataSet', |
|
||||
bizcharts: 'BizCharts', |
|
||||
rollbar: 'rollbar', |
|
||||
}, |
|
||||
alias: { |
|
||||
components: path.resolve(__dirname, 'src/components/'), |
|
||||
}, |
|
||||
ignoreMomentLocale: true, |
|
||||
theme: './src/theme.js', |
|
||||
html: { |
|
||||
template: './src/index.ejs', |
|
||||
}, |
|
||||
publicPath: '/', |
|
||||
hash: true, |
|
||||
lessLoaderOptions: { |
|
||||
javascriptEnabled: true, |
|
||||
}, |
|
||||
cssLoaderOptions: { |
|
||||
modules: true, |
|
||||
getLocalIdent: (context, localIdentName, localName) => { |
|
||||
if ( |
|
||||
context.resourcePath.includes('node_modules') || |
|
||||
context.resourcePath.includes('ant.design.pro.less') |
|
||||
) { |
|
||||
return localName; |
|
||||
} |
|
||||
const antdProPath = context.resourcePath.match(/src(.*)/)[1].replace('.less', ''); |
|
||||
const arr = antdProPath |
|
||||
.split('/') |
|
||||
.map(a => a.replace(/([A-Z])/g, '-$1')) |
|
||||
.map(a => a.toLowerCase()); |
|
||||
return `antd-pro${arr.join('-')}-${localName}`.replace(/--/g, '-'); |
|
||||
}, |
|
||||
}, |
|
||||
}; |
|
||||
@ -1,6 +1,54 @@ |
|||||
|
/* eslint-disable react/destructuring-assignment */ |
||||
|
|
||||
// https://umijs.org/config/
|
// https://umijs.org/config/
|
||||
|
|
||||
|
const path = require('path'); |
||||
|
|
||||
export default { |
export default { |
||||
plugins: [ |
plugins: ['umi-plugin-dva'], |
||||
'umi-plugin-dva', |
|
||||
], |
// TODO remove
|
||||
|
// entry: 'src/index.js',
|
||||
|
extraBabelPlugins: [['import', { libraryName: 'antd', libraryDirectory: 'es', style: true }]], |
||||
|
env: { |
||||
|
development: { |
||||
|
extraBabelPlugins: ['dva-hmr'], |
||||
|
}, |
||||
|
}, |
||||
|
externals: { |
||||
|
'@antv/data-set': 'DataSet', |
||||
|
bizcharts: 'BizCharts', |
||||
|
rollbar: 'rollbar', |
||||
|
}, |
||||
|
alias: { |
||||
|
components: path.resolve(__dirname, 'src/components/'), |
||||
|
}, |
||||
|
ignoreMomentLocale: true, |
||||
|
theme: './src/theme.js', |
||||
|
html: { |
||||
|
template: './src/index.ejs', |
||||
|
}, |
||||
|
publicPath: '/', |
||||
|
// TODO check hash config
|
||||
|
// hash: true,
|
||||
|
lessLoaderOptions: { |
||||
|
javascriptEnabled: true, |
||||
|
}, |
||||
|
cssLoaderOptions: { |
||||
|
modules: true, |
||||
|
getLocalIdent: (context, localIdentName, localName) => { |
||||
|
if ( |
||||
|
context.resourcePath.includes('node_modules') || |
||||
|
context.resourcePath.includes('ant.design.pro.less') |
||||
|
) { |
||||
|
return localName; |
||||
|
} |
||||
|
const antdProPath = context.resourcePath.match(/src(.*)/)[1].replace('.less', ''); |
||||
|
const arr = antdProPath |
||||
|
.split('/') |
||||
|
.map(a => a.replace(/([A-Z])/g, '-$1')) |
||||
|
.map(a => a.toLowerCase()); |
||||
|
return `antd-pro${arr.join('-')}-${localName}`.replace(/--/g, '-'); |
||||
|
}, |
||||
|
}, |
||||
}; |
}; |
||||
|
|||||
Loading…
Reference in new issue