This commit is contained in:
David Arranz 2025-05-10 20:14:06 +02:00
parent 72a50cc0b1
commit 79099ffc34
3 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@
"type": "module", "type": "module",
"private": true, "private": true,
"exports": { "exports": {
"./tailwind.config.mts": "./tailwind.config.mts", "./tailwind.config": "./tailwind.config.mts",
"./globals.css": "./src/styles/globals.css", "./globals.css": "./src/styles/globals.css",
"./postcss.config": "./postcss.config.mjs", "./postcss.config": "./postcss.config.mjs",
"./components": "./src/components/index.tsx", "./components": "./src/components/index.tsx",

View File

@ -1,7 +1,7 @@
import type { Config } from "tailwindcss"; import type { Config } from "tailwindcss";
const config = { const config = {
// this file is located in packages/ui, but it is being used by apps/web (and any future web apps). // this file is located in packages/shadcn-ui, but it is being used by apps/web (and any future web apps).
// hence, the following paths: // hence, the following paths:
content: ["app/**/*.{ts,tsx}", "../../packages/shadcn-ui/src/**/*.{ts,tsx}"], content: ["app/**/*.{ts,tsx}", "../../packages/shadcn-ui/src/**/*.{ts,tsx}"],
} satisfies Config; } satisfies Config;