forked from heyeshuang/hieda-lrc-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.dev.config.js
54 lines (52 loc) · 1.34 KB
/
webpack.dev.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
'use strict';
var path = require('path');
var webpack = require('webpack');
module.exports = {
entry: {
index: './js/index.js'
},
output: {
path: path.resolve(__dirname, 'build', 'js'),
filename: '[name].bundle.js',
chunkFilename: '[id].bundle.js',
publicPath: 'js/'
},
devtool: 'sourcemap',
debug: true,
module: {
loaders: [
{
test: /\.css$/,
loader: 'style/useable!css!autoprefixer?browsers=last 5 version!'
},
{
test: /\.less$/,
loader: 'style!css!autoprefixer?browsers=last 5 version!less!'
},
{
test: /\.(js|jsx)$/,
loader: 'babel',
exclude: /(node_modules|bower_components)/,
query: {
presets: [
'react',
'es2015'
]
}
},
{
test: /\.(eot|svg|ttf|woff|woff2)\w*/,
loader: 'file'
}
]
},
resolve: {
root: [
path.resolve(__dirname),
path.resolve(__dirname, 'js', 'fw', 'lib')
]
},
plugins: [
new webpack.optimize.CommonsChunkPlugin('common.bundle.js')
]
};