-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathwebpack.dev.ts
More file actions
119 lines (114 loc) · 2.67 KB
/
webpack.dev.ts
File metadata and controls
119 lines (114 loc) · 2.67 KB
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
import path from "path"
import { Configuration } from "webpack"
import HtmlWebpackPlugin from "html-webpack-plugin"
import MiniCssExtractPlugin from "mini-css-extract-plugin"
import { CleanWebpackPlugin } from "clean-webpack-plugin"
const appConfig = {
entry: {
app: "./src/frontend/app.ts",
home: "./src/frontend/home.ts",
invite: "./src/frontend/invite.ts",
privacy: "./src/frontend/legal.ts",
terms: "./src/frontend/legal.ts",
license: "./src/frontend/license.ts",
404: "./src/frontend/404.ts"
},
entries: {
app: {
title: "app",
filename: "app.ejs",
template: "app.ejs",
chunks: ["app"]
},
home: {
title: "home",
filename: "home.ejs",
template: "home.ejs",
chunks: ["home"]
},
invite: {
title: "invite",
filename: "invite.ejs",
template: "invite.ejs",
chunks: ["invite"]
},
privacy: {
title: "privacy",
filename: "privacy.ejs",
template: "privacy.ejs",
chunks: ["privacy"]
},
terms: {
title: "terms",
filename: "terms.ejs",
template: "terms.ejs",
chunks: ["terms"]
},
license: {
title: "license",
filename: "license.ejs",
template: "license.ejs",
chunks: ["license"]
},
404: {
title: "404",
filename: "404.ejs",
template: "404.ejs",
chunks: ["404"]
}
}
}
const plugins: (CleanWebpackPlugin | MiniCssExtractPlugin | HtmlWebpackPlugin)[] = [
new CleanWebpackPlugin(),
new MiniCssExtractPlugin({
filename: "[name].css"
})
]
Object.values(appConfig.entries).forEach((entryInfo, _entryName) => {
plugins.push(
new HtmlWebpackPlugin({
title: entryInfo.title,
filename: path.join(__dirname, "./views/" + entryInfo.filename),
template: "!!raw-loader!./templates/" + entryInfo.template,
chunks: entryInfo.chunks,
publicPath: "/bundle",
chunksSortMode: "manual",
inject: "head",
scriptLoading: "defer"
})
)
})
const entry = appConfig.entry
const config: Configuration = {
mode: "development",
entry,
output: {
path: path.resolve(__dirname, "public/bundle"),
filename: "[name].js",
clean: true
},
plugins,
resolve: {
extensions: [".tsx", ".ts", ".js", ".scss"]
},
module: {
rules: [
{
test: /\.tsx?$/,
exclude: /node_modules/,
use: {
loader: "babel-loader",
options: {
presets: ["@babel/preset-typescript"]
}
}
},
{
test: /\.s[ac]ss$/i,
use: [MiniCssExtractPlugin.loader, "css-loader", "sass-loader"]
}
]
},
watch: true
}
export default config