git ssb

0+

Rômulo Alves / plainbudget-next



Tree: 9b063e0cf3edbe946b4d70c56fee7a6402b2211b

Files: 9b063e0cf3edbe946b4d70c56fee7a6402b2211b / 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