forked from patw0929/react-smartbanner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
69 lines (63 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/*
* Webpack development server configuration
*
* This file is set up for serving the webpack-dev-server, which will watch for changes and recompile as required if
* the subfolder /webpack-dev-server/ is visited. Visiting the root will not automatically reload.
*/
var webpack = require('webpack'),
path = require('path');
var eslintrcPath = path.resolve(__dirname, '.eslintrc');
module.exports = {
devtool: 'eval',
watch: true,
output: {
filename: '[name].js',
publicPath: '/assets/'
},
entry: {
main: [
'webpack/hot/only-dev-server',
'./src/components/SmartBanner.js'
],
example: [
'webpack/hot/only-dev-server',
'./src/example.js'
]
},
stats: {
colors: true,
reasons: true
},
resolve: {
extensions: ['', '.js'],
alias: {
'styles': __dirname + '/src/styles',
'mixins': __dirname + '/src/mixins',
'components': __dirname + '/src/components/',
'react-smartbanner': './components/SmartBanner.js'
}
},
module: {
loaders: [{
test: /\.js$/,
exclude: /node_modules/,
loader: 'react-hot!babel'
}, {
test: /\.scss/,
loader: 'style!css!sass?outputStyle=expanded'
}, {
test: /\.css$/,
loader: 'style!css'
}, {
test: /\.(png|jpg|woff|woff2)$/,
loader: 'url?limit=8192'
}]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin()
],
eslint: {
configFile: eslintrcPath
}
};