{ "version": 2, "name": "plainbudget", "alias": [ "plainbudget.now.sh" ], "env": { "NODE_ENV": "production" }, "builds": [ { "src": "next.config.js", "use": "@now/next" }, { "src": "static/**/*", "use": "@now/static" }, { "src": ".well-known/*", "use": "@now/static" } ], "routes": [ { "src": "/.well-known/(.*)", "dest": "/.well-known/$1", "headers": { "content-type": "text/plain", "content-disposition": "inline; filename=\"$1\"", "Access-Control-Allow-Origin": "*" } }, { "src": "/static/(.*)", "dest": "/static/$1", "headers": { "Access-Control-Allow-Origin": "*" } }, { "src": "/(.*)", "dest": "/$1", "headers": { "Access-Control-Allow-Origin": "*" } } ] }