forked from rocksell/react-start-tips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
52 lines (45 loc) · 1.29 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var webpack = require('webpack');
var path = require('path');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
config = {
devtool: null,
entry: {
main: [
'./src/index.js'
]
},
output: {
library: 'ReactStartTips',
libraryTarget: 'umd'
},
module: {
noParse: [
/\/babel-core\/browser-polyfill\.js$/
],
loaders: [{
test: /\.jsx?$/,
exclude: /node_modules[\/\\]/,
loader: 'babel-loader'
}, {
test: /\.css$/,
loader: 'style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]'
}, {
test: /\.scss$/,
loader: 'style-loader!css-loader?modules&importLoaders=1&localIdentName=[name]__[local]___[hash:base64:5]!sass-loader'
}, {
test: require.resolve('react'),
loader: 'expose?React'
}, {
test: require.resolve('react-dom'),
loader: 'expose?ReactDOM'
}]
},
plugins: [
new webpack.ProvidePlugin({
React: 'react',
ReactDOM: 'react-dom',
}),
new ExtractTextPlugin("../../stylesheets/generated/app-bundle.css"),
]
};
module.exports = config;