rsnext/examples/with-turbopack
Max Proske 809303be59
Remove swcMinify option from example configs (#43012)
SWC minification is now [enabled by
default](https://nextjs.org/docs/advanced-features/compiler) in the
Next.js compiler.

## 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-16 13:39:26 -08: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 Remove swcMinify option from example configs (#43012) 2022-11-16 13:39:26 -08: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