-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathwebpack.config.js
44 lines (39 loc) · 1.15 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
var webpack = require('webpack'),
bourbon = require('node-bourbon').includePaths,
neat = require('node-neat').includePaths.map(function(sassPath) {
return "includePaths[]=" + sassPath;
}).join("&"),
outPath = __dirname + '/dist',
resolve = {
extensions: ['','.ls','.js','.json','.sass','.png','.jpg']
},
plugins = [
new webpack.HotModuleReplacementPlugin()
],
modules = {
loaders: [
{ test: /\.(png|jpg)$/, loader: 'url-loader?limit=8192&name=/images/[name].[ext]&context=./src/images'},
{ test: /\.ls$/, loader: 'livescript-loader?const=true' },
{ test: /\.json$/, loader: 'json' },
{
test: /\.sass$/,
loader: 'style!css!sass?indentedSyntax&' +
"includePaths[]=" + bourbon + "&" +
"includePaths[]=" + neat + "&" +
"includePaths[]=" + __dirname + "./src/sass"
}
]
};
module.exports = {
entry: [
'./src/entry',
'webpack/hot/dev-server',
],
output: {
path : outPath,
filename : 'main.js',
},
resolve: resolve,
module: modules,
plugins: plugins
};