-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.dev.js
93 lines (87 loc) · 2.27 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
91
92
93
import { merge } from 'webpack-merge';
import common from './webpack.common.js';
import HtmlWebpackPlugin from 'html-webpack-plugin';
import CopyWebpackPlugin from 'copy-webpack-plugin';
export default merge(common, {
mode: 'development',
devtool: 'inline-source-map',
devServer: {
static: './dist',
},
plugins: [
// Index
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'index.html',
template: './examples/index.html',
title: '✌ index',
inject: false,
// templateParameters: {
// dataConfig: 'test',
// },
}),
// Test cases
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'resizing.html',
template: './examples/test/resizing.html',
}),
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'tags.html',
template: './examples/test/tags.html',
}),
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'all.html',
template: './examples/test/all.html',
title: '🧲 all',
inject: false,
}),
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'current.html',
template: './examples/test/current.html',
title: '🥁 current test',
inject: false,
}),
// Strictdoc 🌲
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'strictdoc.html',
template: './examples/strictdoc/index.html',
title: '🎃 strictdoc',
inject: false,
}),
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'cur.html',
template: './examples/strictdoc/cur.html',
title: '🐱 current case',
inject: false,
}),
// TEST
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'test.html',
template: './examples/strictdoc/test.html',
title: '📍 test',
inject: false,
}),
new HtmlWebpackPlugin({
appMountId: 'app',
filename: 'test_.html',
template: './examples/strictdoc/test_.html',
title: '📍 test',
inject: false,
}),
// CSS
new CopyWebpackPlugin({
patterns: [
{ from: './examples/css', to: 'css' },
{ from: './examples/strictdoc/css', to: 'strictdoc/css' },
{ from: './examples/assets', to: 'assets' },
],
}),
],
});