mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
22 lines
447 B
JavaScript
22 lines
447 B
JavaScript
var config = require('./webpack.config');
|
|
config.entry = {
|
|
'antd': ['./style/index.less', './index.js']
|
|
};
|
|
config.externals = {
|
|
'react': {
|
|
root: 'React',
|
|
commonjs2: 'react',
|
|
commonjs: 'react',
|
|
amd: 'react'
|
|
},
|
|
'react-dom': {
|
|
root: 'ReactDOM',
|
|
commonjs2: 'react-dom',
|
|
commonjs: 'react-dom',
|
|
amd: 'react-dom'
|
|
}
|
|
};
|
|
config.output.library = 'antd';
|
|
config.output.libraryTarget = 'umd';
|
|
module.exports = config;
|