Integrations
Set up Master CSS in Next.js
Guide to setting up Master CSS in your Next.js project.
Create a Next.js project
If you don't have a Next.js project, create one first.
npx create-next-app@latest my-app --ts --app --no-tailwindcd my-appAdd Master CSS
Run the installer from the Next.js project root.
npm create @master/css@rc -- --framework nextjs --yesLaunch server
Run the development server.
npm run devStart using Master CSS
Now style your first page using Master CSS syntax.
localhost:3000
Hello World
export default function Home() { return ( <h1 className="m:2xl italic font:5xl font:heavy text:neutral"> Hello World </h1> )}Use Next.js runtime rendering when CSS should be generated only in the browser. Use Next.js static rendering when classes are statically visible and you need build-time CSS output.