-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
47 lines (44 loc) · 1.12 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
// webpack.config.js
const loaders = ['react-hot', 'babel'];
const ExtractTextPlugin = require('extract-text-webpack-plugin');
module.exports = {
devtool: 'eval',
entry: [
'webpack-dev-server/client?http://localhost:8080',
'./app-client.js',
'./src/scss/app.scss',
],
output: {
path: `${__dirname}/public/dist`,
filename: 'bundle.js',
publicPath: '/dist/',
libraryTarget: 'umd',
},
module: {
loaders: [
{
test: /\.js$/,
loaders,
exclude: /node_modules/,
},
{
test: /\.scss$/,
loader: ExtractTextPlugin.extract(
'style',
'css?sourceMap!sass?sourceMap'
),
},
{
test: /\.(png|jpg)$/,
loader: 'file-loader?name=dist/img/img-[hash:6].[ext]',
},
{
test: /\.json$/,
loader: 'json',
},
],
},
plugins: [
new ExtractTextPlugin('app.css'),
],
};