You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
908 B
51 lines
908 B
var webpack = require('webpack');
|
|
var ExtractTextPlugin = require("extract-text-webpack-plugin");
|
|
var path = require('path');
|
|
|
|
module.exports = {
|
|
entry: {
|
|
antd: './index.js'
|
|
},
|
|
|
|
resolve: {
|
|
extensions: ['', '.js', '.jsx'],
|
|
},
|
|
|
|
output: {
|
|
path: path.join(process.cwd(), 'dist'),
|
|
filename: '[name].js'
|
|
},
|
|
|
|
externals: {
|
|
react: "React"
|
|
},
|
|
|
|
module: {
|
|
loaders: [{
|
|
test: /\.jsx?$/,
|
|
exclude: /node_modules/,
|
|
loader: 'babel'
|
|
}, {
|
|
test: /\.json$/,
|
|
loader: 'json-loader'
|
|
}, {
|
|
test: /\.less$/,
|
|
loader: ExtractTextPlugin.extract(
|
|
'css?sourceMap!' +
|
|
'less?sourceMap'
|
|
)
|
|
}, {
|
|
test: /\.css$/,
|
|
loader: ExtractTextPlugin.extract(
|
|
'css?sourceMap'
|
|
)
|
|
}]
|
|
},
|
|
|
|
plugins: [
|
|
new ExtractTextPlugin('[name].css'),
|
|
new webpack.NewWatchingPlugin()
|
|
],
|
|
|
|
devtool: '#source-map'
|
|
};
|
|
|