diff --git a/package.json b/package.json index 6d963ef8..d3fbe427 100644 --- a/package.json +++ b/package.json @@ -5,10 +5,10 @@ "author": "Bhargav Ponnapalli ", "license": "MIT", "scripts": { - "dev": "concurrently \"next dev \" \"tailwindcss-cli --input ./src/app/globals.css --output ./src/app/output.css --watch\"", + "dev": "next dev", "start": "next start", "generate:types:local": "export $(cat .env.local | xargs) && supabase gen types typescript --project-id ${SUPABASE_PROJECT_REF} --schema public > src/lib/database.types.ts", - "build": "tailwindcss -i ./src/app/globals.css --output ./src/app/output.css && next build", + "build": "next build", "test:e2e": "playwright test", "test": "vitest --root src --run", "test:watch": "vitest --root src", diff --git a/src/app/layout.tsx b/src/app/layout.tsx index e8306718..d58aa260 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,5 +1,5 @@ import { ClientLayout } from './ClientLayout'; -import './output.css'; +import './globals.css'; // do not cache this layout export const revalidate = 0;