rsnext/examples/with-cxs
Max Proske 07d3da102d
Convert with-cssed, with-csx, with-styled-jsx examples to TypeScript (#43018)
Updated 3 more examples to TypeScript. Changes to individual examples
pushed as separate commits.

- Swapped `cxs/lite` for `cxs`, as it's the only mode supported by
`@types/cxs`.

## Documentation / Examples

- [X] Make sure the linting passes by running `pnpm build && pnpm lint`
- [X] The "examples guidelines" are followed from [our contributing
doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-11-17 10:28:57 -08:00
..
pages Convert with-cssed, with-csx, with-styled-jsx examples to TypeScript (#43018) 2022-11-17 10:28:57 -08:00
.gitignore Update default gitignore templates (#39051) 2022-07-26 20:08:40 -05:00
package.json Convert with-cssed, with-csx, with-styled-jsx examples to TypeScript (#43018) 2022-11-17 10:28:57 -08:00
README.md docs(examples): improve DX while copying command to create new project (#38410) 2022-07-26 21:57:48 -05:00
tsconfig.json Convert with-cssed, with-csx, with-styled-jsx examples to TypeScript (#43018) 2022-11-17 10:28:57 -08:00

Example app with cxs

This example shows how to use a different styling solution than styled-jsx that also supports universal styles. That means we can serve the required styles for the first render within the HTML and then load the rest in the client. In this case we are using cxs.

For this purpose we are extending the <Document /> and injecting the server side rendered styles into the <head>.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-cxs with-cxs-app
yarn create next-app --example with-cxs with-cxs-app
pnpm create next-app --example with-cxs with-cxs-app

Deploy it to the cloud with Vercel (Documentation).