-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.config.js
43 lines (42 loc) · 1.05 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
const path = require('path')
const CopyWebpackPlugin = require('copy-webpack-plugin')
module.exports = {
entry: {
'background': './src/background.ls'
, 'options': './src/options.ls'
}
, output: {
path: path.join(__dirname, 'build')
, filename: '[name].js'
}
, devtool: 'source-map'
, target: 'web'
, node: {
fs: 'empty'
, net: 'empty'
}
, plugins: [
new CopyWebpackPlugin(
[
{ from: './src' }
, { from: './node_modules/keen-ui/dist/keen-ui.css' }
, { from: './node_modules/flexboxgrid/dist/flexboxgrid.css' }
, { from: './node_modules/normalize.css/normalize.css' }
, { from: './node_modules/material-design-icons/iconfont/MaterialIcons-Regular.woff2' }
]
, { ignore: ['*.ls', '*.vue'] })
]
, module: {
loaders: [
{ test: /\.ls$/, loader: 'livescript' }
, { test: /\.vue$/, loader: 'vue' }
, { test: /\.json$/, loader: 'json' }
]
}
, vue: {
loaders: {
livescript: 'livescript'
, stylus: 'style!css!stylus'
}
}
}