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.

49 lines
844 B

var webpack = require('webpack');
10 years ago
var ExtractTextPlugin = require("extract-text-webpack-plugin");
10 years ago
var path = require('path');
module.exports = {
entry: {
antd: './index.js'
},
resolve: {
extensions: ['', '.js', '.jsx'],
},
output: {
10 years ago
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'
)
}]
},
10 years ago
plugins: [
new ExtractTextPlugin('[name].css')
]
};