forked from BerkeleyTrue/react-material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
41 lines (38 loc) · 854 Bytes
/
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
'use strict';
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var ReactStylePlugin = require('react-style-webpack-plugin');
module.exports = {
devtool: 'sourcemap',
entry: "./views/DocumentationApplication.js",
output: {
filename: "bundle.js",
path: __dirname + "/assets",
publicPath: "assets/"
},
module: {
loaders: [
{
test:/\.html$/,
loader: 'html-loader'
},
{
test: /\.js$/,
loaders: [
ReactStylePlugin.loader(),
'jsx-loader?harmony&sourceMap'
]
},
{
test: /\.css$/,
loader: ExtractTextPlugin.extract('css-loader?sourceMap')
},
{
test: /\.(otf|eot|svg|ttf|woff)/,
loader: 'url-loader?limit=8192'
}
]
},
plugins: [
new ReactStylePlugin('bundle.css', {allChunks: true})
]
};