Created
September 16, 2019 02:32
-
-
Save AGDholo/492ec681a568cdbc38111b8849392282 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 2, | |
"name": "now-laravel-core", | |
"scope": "your scope", | |
"regions": [ | |
"all" | |
], | |
"public": true, | |
"builds": [ | |
{ | |
"src": "public/index.php", | |
"use": "now-php@latest", | |
"config": { | |
"mode": "cgi", | |
"composer": true | |
} | |
}, | |
{ "src": "public/!(*.php)", "use": "@now/static" }, | |
{ "src": "public/**/!(*.php)", "use": "@now/static" } | |
], | |
"routes": [ | |
{ "src": "/favicon.ico", "dest": "public/favicon.ico"}, | |
{ "src": "/robots.txt", "dest": "public/robots.txt"}, | |
{ "src": "/(.*)", "dest": "public/index.php" } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment