forked from ProjectEvergreen/greenwood-demo-adapter-vercel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove hardcoded api output directory * add generated directory to .gitignore * patch to 7d9257af with custom vercel adapter * add inverted .vercelignore * revert adding .vercelignore * add debug output * add debug output * add debug output * remove generated api dir from .gitignore * test using vercel build output * configure build output version * add public build output to vercel build output * adapt API routes to Vercel build output format * hardcoded API functions output test * try with servless example from vercel docs * try with stricter formatting? * revert try with stricter formatting? * test do not bundle static dir into output dir * add public output back to build output * add some logging at the top of the file * specify launcherType config for API routes * add package.json for module type support for API routes * add logging and use response.send * use shouldAddHelpers flag * restore original adapter functionality * adapt SSR pages for build output configuration * generate package.json with ESM support for SSR pages * make sure execute route module is bundled with serverless SSR pages * remove extra test pages * add comment * handle conditional exectuteRouteModule vercel build output dependency * upgrade greenwood v0.29.0-alpha.1 * update TODO checklist in README * sync with latest upstream * log out handler request and response * support response headers * additional logging * SSR pages should return a text/html content type * SSR pages should return a text/html content type * finishing touches * upgrade latest greenwood with vercel adapter plugin * README touch up
- Loading branch information
1 parent
78a56cd
commit 937bb7c
Showing
10 changed files
with
4,072 additions
and
21,153 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
node_modules/ | ||
public/ | ||
.vercel | ||
.vercel |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
legacy-peer-deps=true |
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
import { greenwoodPluginAdapterVercel } from '@greenwood/plugin-adapter-vercel'; | ||
|
||
export default { | ||
plugins: [ | ||
greenwoodPluginAdapterVercel() | ||
] | ||
}; |
Oops, something went wrong.