We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb13ac commit e425313Copy full SHA for e425313
vercel.json
@@ -0,0 +1,40 @@
1
+{
2
+ "version": 2,
3
+ "buildCommand": "npm run build",
4
+ "builds": [
5
+ {
6
+ "src": "dist/server.js",
7
+ "use": "@vercel/node"
8
+ },
9
10
+ "src": "public/**",
11
+ "use": "@vercel/static"
12
+ }
13
+ ],
14
+ "routes": [
15
16
+ "src": "/css/(.*)",
17
+ "dest": "/public/css/$1"
18
19
20
+ "src": "/js/(.*)",
21
+ "dest": "/public/js/$1"
22
23
24
+ "src": "/img/(.*)",
25
+ "dest": "/public/img/$1"
26
27
28
+ "src": "/font/(.*)",
29
+ "dest": "/public/font/$1"
30
31
32
+ "src": "/webfonts/(.*)",
33
+ "dest": "/public/webfonts/$1"
34
35
36
+ "src": "/(.*)",
37
+ "dest": "/dist/server.js"
38
39
+ ]
40
+}
0 commit comments