summaryrefslogtreecommitdiff
path: root/examples/ssr/src (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-08-06[ci] formatGravatar FredKSchott 8-26/+26
2022-08-05Move types to a .d.ts file inside examples projects (#4171)Gravatar Erika 1-0/+1
* Move types to a .d.ts file to avoid making types explicit * Rename to proper types * Move to proper place * Add noEmit to tsconfig.json * Add back removed code by accident
2022-07-08Format astro files in examples (#3862)Gravatar Marcus Otterström 8-150/+157
2022-04-02update prettier width (#2968)Gravatar Fred K. Schott 1-1/+5
2022-03-29[ci] formatGravatar matthewp 1-1/+1
2022-03-29Make the SSR example infer the origin (#2932)Gravatar Matthew Phillips 5-18/+19
2022-03-29[ci] formatGravatar matthewp 5-13/+9
2022-03-29Make it deployable to Netlify (#2931)Gravatar Matthew Phillips 7-1/+112
2022-03-29Implement the Astro.request RFC (#2913)Gravatar Matthew Phillips 1-1/+1
* Implement the Astro.request RFC * Disable console warnings eslint * Use our logger * Adds a changeset * Fix tests that depend on params, canonicalURL, URL Co-authored-by: Fred K. Schott <fkschott@gmail.com>
2022-03-17Allow SSR dynamic routes to not implement getStaticPaths (#2815)Gravatar Matthew Phillips 1-10/+1
* Allow SSR dynamic routes to not implement getStaticPaths * Adds a changeset * Update based on code-review comments
2022-03-16[ci] formatGravatar matthewp 3-11/+9
2022-03-16Implements redirects, headers for SSR (#2798)Gravatar Matthew Phillips 9-9/+174
* Implements redirects, headers for SSR * Move away from an explicit Request * Properly handle endpoint routes in the build * chore(lint): ESLint fix * Update based on review comments Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2022-02-28Fix typo (#2674)Gravatar Robin Millette 1-1/+1
2022-02-14[ci] yarn formatGravatar matthewp 2-7/+5
2022-02-14Flagged SSR support (#2548)Gravatar Matthew Phillips 10-0/+327
* Checkpoint, basics are working * Add the `--experimental-ssr` flag * Adds the changeset * Fixes population of getStaticPaths results * Pass through the imported module * Route manifest test * Fix remaining tests * Fix remaining tests * Copy server assets over * Fix types * Allowing passing in the request to the Node version of App * Improve the example app * Gets CI to pass