-
Notifications
You must be signed in to change notification settings - Fork 6
/
webpack.dev.js
91 lines (89 loc) · 2.08 KB
/
webpack.dev.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
const path = require('path');
const common = require('./webpack.common.js');
const webpack = require('webpack');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const HtmlWebpackTagsPlugin = require('html-webpack-tags-plugin');
const Merge = require('webpack-merge');
module.exports = env => (Merge.multiple(common(env), {
js: {
mode: 'development',
entry: {
browser: './browser.js',
},
module: {
rules: [
{
test: /\.hbs$/,
use: [
{
loader: 'handlebars-loader',
},
],
},
],
},
devtool: 'inline-source-map',
devServer: {
publicPath: '/',
contentBase: path.join(__dirname, 'example'),
watchContentBase: true,
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('development')
}
}),
new HtmlWebpackPlugin({
title: '[kunai-testing]',
hash: true,
template: '../html/kunai-testing.hbs',
chunks: [
'kunai-vendor',
'kunai',
'browser',
],
}),
new HtmlWebpackPlugin({
title: '[kunai-testing-2]',
hash: true,
filename: 'kunai-testing-2.html',
template: '../html/kunai-testing-2.hbs',
chunks: [
'kunai-vendor',
'kunai',
'browser',
],
}),
new HtmlWebpackPlugin({
title: '[char16_32]',
hash: true,
filename: 'char16_32.html',
template: '../html/char16_32.hbs',
chunks: [
'kunai-vendor',
'kunai',
'browser',
],
}),
new HtmlWebpackTagsPlugin({
tags: [
'css/kunai-stage-0.css',
'css/kunai-stage-1.css',
'css/kunai-stage-2.css',
'css/kunai-stage-3.css',
'css/browser.css',
],
append: true,
useHash: true,
}),
],
},
css: {
mode: 'development',
entry: {
browser: './browser.css',
},
devtool: 'inline-source-map',
},
}))