Installation
Using Panda CSS with Next.js
Panda CSS works out of the box with Next.js. You can use Panda CSS with Next.js by following the steps below.
If you don't have Next.js app installed, you can follow the Create a Next.js app section to create a new Next.js app, otherwise you can skip to the Install Panda CSS section.
Start a new project
You can chose between these two options to start a new project:
Create a Next.js app
First, create a Next.js app using the official Create Next App (opens in a new tab) CLI.
We will name our project test-app
but you can name it whatever you want.
If you don't enter any parameter, the CLI will guide you through the process of creating a new Next.js app.
You will be asked a few questions, answer them as follows:
✔ What is your project named? … test-app
✔ Would you like to use TypeScript with this project? … Yes
✔ Would you like to use ESLint with this project? … Yes
✔ Would you like to use Tailwind CSS with this project? … No
✔ Would you like to use `src/` directory with this project? … Yes
✔ Use App Router (recommended)? … Yes
✔ Would you like to customize the default import alias? … No
✔ What is your project named? … test-app
✔ Would you like to use TypeScript with this project? … Yes
✔ Would you like to use ESLint with this project? … Yes
✔ Would you like to use Tailwind CSS with this project? … No
✔ Would you like to use `src/` directory with this project? … Yes
✔ Use App Router (recommended)? … No
✔ Would you like to customize the default import alias? … No
Enter the newly created directory:
cd test-app
Install Panda CSS
Install Panda CSS dependency using your favorite package manager.
panda init --postcss
command will automatically create a postcss.config.js
file at the root of your project with the following code:
module.exports = {
plugins: {
'@pandacss/dev/postcss': {},
},
}
For advanced configuration follow the Next.js PostCSS guide to set up a custom PostCSS configuration by referring to this link (opens in a new tab).
Update package.json scripts
Open your package.json
file and update the scripts
section as follows:
{
"scripts": {
+ "prepare": "panda codegen",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
}
}
The prepare
script that will run codegen after dependency installation. Read more about codegen in the CLI section.
This step ensures that the panda output directory is regenerated after each dependency installation. So you can add the output directory to your .gitignore
file and not worry about it.
Configure the content
Make sure that all of the paths of your React components are included in the include
section of the panda.config.ts
file.
import { defineConfig } from "@pandacss/dev"
export default defineConfig({
// Whether to use css reset
preflight: true,
// Where to look for your css declarations
include: ["./src/components/**/*.{ts,tsx,js,jsx}", "./src/app/**/*.{ts,tsx,js,jsx}"],
// Files to exclude
exclude: [],
// The output directory for your css system
outdir: "styled-system",
})
import { defineConfig } from "@pandacss/dev"
export default defineConfig({
// Whether to use css reset
preflight: true,
// Where to look for your css declarations
include: ["./src/components/**/*.{ts,tsx,js,jsx}", "./src/pages/**/*.{ts,tsx,js,jsx}"],
// Files to exclude
exclude: [],
// The output directory for your css system
outdir: "styled-system",
})
Configure the entry CSS with layers
In your Next.js project, navigate to the src/app
folder and open globals.css
file. Replace all the content with the following code:
In your Next.js project, navigate to the src/styles
folder and open globals.css
file. Replace all the content with the following code:
@layer reset, base, tokens, recipes, utilities;
Note: Feel free to remove the page.module.css
file as we don't need it anymore.
Note: Feel free to remove the Home.module.css
file as we don't need it anymore.
Import the entry CSS in your app
Make sure that you import the globals.css
file in your src/app/layout.tsx
file as follows:
import './globals.css';
import type { Metadata } from 'next';
import localFont from 'next/font/local';
const geistSans = localFont({
src: './fonts/GeistVF.woff',
variable: '--font-geist-sans',
weight: '100 900',
});
const geistMono = localFont({
src: './fonts/GeistMonoVF.woff',
variable: '--font-geist-mono',
weight: '100 900',
});
export const metadata: Metadata = {
title: 'Create Next App',
description: 'Generated by create next app',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${geistSans.variable} ${geistMono.variable}`}>
{children}
</body>
</html>
);
}
Make sure that you import the globals.css
file in your src/pages/_app.tsx
file as follows:
import '../styles/globals.css';
import type { AppProps } from 'next/app';
export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
}
Start using Panda
We will update the contents of src/app/page.tsx
with the following snippet that uses Panda CSS:
We will update the contents of src/pages/index.tsx
with the following snippet that uses Panda CSS:
import { css } from '../../styled-system/css';
export default function Home() {
return (
<div className={css({ fontSize: "2xl", fontWeight: 'bold' })}>Hello 🐼!</div>
)
}
Start the development server
Run the following command to start the development server:
Open http://localhost:3000 (opens in a new tab) with your browser to see the result.
Troubleshooting
I don't see any styles
Sometimes Next.js caches PostCSS generated styles and when that happens you need to clear the cache. To do that, delete the .next
folder and restart your development server.
You can also update you package.json
scripts to delete the .next
folder before each build:
{
"scripts": {
- "dev": "next dev",
+ "dev": "rm -rf .next && next dev",
},
}
This is a known issue with Next.js and you can track the progress here:
- vercel/next.js#39410 (opens in a new tab)
- vercel/next.js#48748 (opens in a new tab)
- vercel/next.js#47533 (opens in a new tab)
I don't see any import autocomplete in my IDE
If you're not getting import autocomplete in your IDE, you may need to include the styled-system
directory in your tsconfig.json
file:
{
// ...
"include": ["src", "styled-system"]
}
Codegen fails using es5
If you run into any error related to "Transforming const to the configured target environment ("es5") is not supported yet", update your tsconfig to use es6 or higher:
{
"compilerOptions": {
"target": "es6",
}
}