forked from justindujardin/ng2-material
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
38 lines (38 loc) · 777 Bytes
/
webpack.config.js
File metadata and controls
38 lines (38 loc) · 777 Bytes
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
module.exports = {
entry: {
'all.webpack': './ng2-material/webpack_all.js',
'all.webpack.styles': './ng2-material/webpack_styles.js'
},
output: {
// We use CommonJS because of Meteor 1.3 specification that uses it
libraryTarget: 'commonjs',
path: './out/',
filename: "[name].js"
},
resolve: {
extensions: ['', '.webpack.js', '.web.js', '.css', '.js']
},
externals: [
/angular2\/.*/
],
module: {
loaders: [
{
test: /\.woff$/,
loader: 'url?limit=100000'
},
{
test: /\.woff2$/,
loader: 'url?limit=100000'
},
{
test: /\.ttf/,
loader: 'url?limit=100000'
},
{
test: /\.eot/,
loader: 'url?limit=100000'
}
]
}
};