-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.ts
36 lines (34 loc) · 972 Bytes
/
webpack.config.ts
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
import path from "path";
import {makeConfig} from "@njmaeff/webpack-static-site/make-config";
const conf = makeConfig(({webpack}) => {
return webpack({
root: path.join(__dirname, "pages", "tetris"),
pageExtension: ".page.tsx",
outputPath: path.resolve(__dirname, "dist"),
copy: {
patterns: [
{
from: "assets",
to: "assets",
},
{
from: "font",
to: "font",
},
{
from: "favicon",
to: "favicon",
},
{
from: "js/*.js",
to: "js/[name][ext]",
noErrorOnMissing: true,
info: {
minimized: true,
},
},
],
},
});
});
export default conf;