-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
34 lines (33 loc) · 953 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
var webpack = require('webpack');
module.exports = {
// path must start with ./ relative
entry: [
'./assets/lib/app.js'
],
output: {
// filename: './assets/lib/bundle.js',
path: __dirname,
filename: './assets/lib/bundle.js',
publicPath: '/lib/'
},
externals: {'react': 'React', 'react-dom': 'ReactDOM'},
// compress: true,
module: {
loaders: [
{
test: /.js$/,
loader: 'babel',
query: {
presets: ['react', 'es2015'],
ignore : 'buffer'
}
},
// {
// test: /.js$/,
// loader: 'jsx-loader'
// },
{test: /.less$/, loader: 'style-loader!css-loader!less-loader'},
{ test: /.(png|jpg|jpeg|gif)$/, loader: 'url-loader?limit=10000&name=./images/[name].[ext]' }
]
}
}