-
Notifications
You must be signed in to change notification settings - Fork 5
/
webpack.dev.conf.js
103 lines (101 loc) · 2.27 KB
/
webpack.dev.conf.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
const path = require('path');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const source = __dirname + '/src/';
const ExtractTextPlugin = require('extract-text-webpack-plugin');
function assetsPath(_path) {
return path.posix.join('static', _path)
}
module.exports = {
// TODO hash plugin
entry: {
index: './src/index.js',
},
output: {
path: path.resolve(__dirname, 'dist'),
// where to load chunk file
// publicPath: '/dist/',
filename: '[name].[hash:5].js',
chunkFilename: '[name].[chunkhash].js',
},
resolve: {
extensions: ['.js'],
modules: [
path.resolve(__dirname, 'node_modules')
],
alias: {
components: source + 'components',
router: source + 'router',
views: source + 'views'
}
},
devtool: 'inline-source-map',
devServer: {
hot: true,
contentBase: './dist'
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader'
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
use: 'css-loader'
})
},
{
test: /\.(sass|scss)/,
use: [
'style-loader',
'css-loader',
'sass-loader'
]
},
{
test: /\.html$/,
loader: 'raw-loader'
},
{
test: /\.(png|jpe?g|gif|svg)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: assetsPath('img/[name].[hash:7].[ext]')
}
},
{
test: /\.(woff2?|eot|ttf|otf)(\?.*)?$/,
loader: 'url-loader',
options: {
limit: 10000,
name: assetsPath('fonts/[name].[hash:7].[ext]')
}
},
{
test: require.resolve('jquery'),
use: [{
loader: 'expose-loader',
options: 'jQuery'
}, {
loader: 'expose-loader',
options: '$'
}]
}
]
},
plugins: [
new webpack.HotModuleReplacementPlugin(),
new ExtractTextPlugin('vendor.css'),
new webpack.optimize.CommonsChunkPlugin({
names: ['vendor']
}),
new HtmlWebpackPlugin({
title: 'angular-ui-router-webpack',
template: 'src/index.template.html'
})
]
};