Files: 0e149ed1e49805506189850e99b11ef2da51a5c9 / now.json
839 bytesRaw
1 | { |
2 | "version": 2, |
3 | "name": "plainbudget", |
4 | "alias": [ |
5 | "plainbudget.now.sh" |
6 | ], |
7 | "env": { |
8 | "NODE_ENV": "production" |
9 | }, |
10 | "builds": [ |
11 | { "src": "next.config.js", "use": "@now/next" }, |
12 | { "src": "static/**/*", "use": "@now/static" }, |
13 | { "src": ".well-known/*", "use": "@now/static" } |
14 | ], |
15 | "routes": [ |
16 | { |
17 | "src": "/.well-known/(.*)", |
18 | "dest": "/.well-known/$1", |
19 | "headers": { |
20 | "content-type": "text/plain", |
21 | "content-disposition": "inline; filename=\"$1\"", |
22 | "Access-Control-Allow-Origin": "*" |
23 | } |
24 | }, |
25 | { |
26 | "src": "/static/(.*)", |
27 | "dest": "/static/$1", |
28 | "headers": { |
29 | "Access-Control-Allow-Origin": "*" |
30 | } |
31 | }, |
32 | { |
33 | "src": "/(.*)", |
34 | "dest": "/$1", |
35 | "headers": { |
36 | "Access-Control-Allow-Origin": "*" |
37 | } |
38 | } |
39 | ] |
40 | } |
41 |
Built with git-ssb-web