-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
35 lines (35 loc) · 1.03 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
module.exports = {
entry: [
'core-js/shim',
'angular',
'./src/index.js'
],
output: {
path: 'tmp',
filename: 'index.bundle.js'
},
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader'},
{ test: /\.css$/, loader: 'style-loader!css-loader' },
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: "file" },
{ test: /\.(woff|woff2)$/, loader:"url?prefix=font/&limit=5000" },
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=application/octet-stream" },
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&mimetype=image/svg+xml" }]
},
cache: true,
devtool: 'cheap-module-source-map',
devServer: {
filename: "index.bundle.js",
contentBase: "./src",
port: 3000,
open: true,
watch: true,
publicPath: "/",
historyApiFallback: true,
stats: {
colors: true,
chunks: false
}
}
};