rsnext/examples/with-turbopack
Artem 1f6c0d0f57
chore: update scripts to work on windows (#42632)
Update `package.json` for Windows users.
1. `concurrently` isn't working with single quotes 🤷🏻
2. `--watch` isn't actually passed, because of that `tailwind` compiles only once and exits.

## Bug

- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Errors have a helpful link attached, see `contributing.md`

## Feature

- [ ] Implements an existing feature request or RFC. Make sure the feature request has been accepted for implementation before opening a PR.
- [ ] Related issues linked using `fixes #number`
- [ ] Integration tests added
- [ ] Documentation added
- [ ] Telemetry added. In case of a feature if it's used or not.
- [ ] Errors have a helpful link attached, see `contributing.md`

## Documentation / Examples

- [ ] Make sure the linting passes by running `pnpm build && pnpm lint`
- [ ] The "examples guidelines" are followed from [our contributing doc](https://github.com/vercel/next.js/blob/canary/contributing/examples/adding-examples.md)
2022-11-08 19:43:45 +00:00
..
app examples: Fix with-turbopack typo (#42410) 2022-11-03 11:07:22 -07:00
lib Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
public Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
styles Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
ui Fix next/link codemod errors in with-turbopack (#42203) 2022-10-30 21:06:35 -07:00
.gitignore Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
.npmrc Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
next-env.d.ts Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
next.config.js Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
package.json chore: update scripts to work on windows (#42632) 2022-11-08 19:43:45 +00:00
README.md Fix benchmark link typo in Turbopack example (#42064) 2022-10-28 10:32:19 -07:00
tailwind.config.js Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00
tsconfig.json Add turbopack example (#41789) 2022-10-25 10:21:53 -07:00

Next.js + Turbopack App Directory Playground

Turbopack is a new incremental bundler optimized for JavaScript and TypeScript, written in Rust by the creators of Webpack and Next.js at Vercel. On large applications Turbopack updates 10x faster than Vite and 700x faster than Webpack (benchmark). For the biggest applications the difference grows even more stark with updates up to 20x faster than Vite.

This playground is a mirror of the Next.js v13 App Directory Playground, but uses Turbopack as the Next.js development server (next dev --turbo).

As a reminder, Turbopack is currently in alpha and not yet ready for production. We appreciate your ongoing support as we work to make it ready for everyone.

Running Locally

  1. Install dependencies: yarn
  2. Start the dev server: yarn dev

Note: The playground uses Tailwind CSS. However, Turbopack does not yet support fully PostCSS, but it does support CSS and CSS Modules. As a workaround, we run Tailwind through it's CLI upon postinstall. For live reload of CSS, you can run Tailwind in another process with the --watch flag or install concurrently and modify your dev script:

yarn add concurrently --dev

Then modify your dev script in package.json:

{
  "scripts": {
    "dev": "concurrently \"next dev --turbo\" \"npm run tailwind --watch\""
  }
}

For more information, see: https://turbo.build/pack/docs/features/css#tailwind-css

Documentation

https://nextjs.link/with-turbopack

Providing Feedback

https://nextjs.link/turbopack-feedback