diff --git a/package.json b/package.json index c01626a..263cb3a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@foomo/ui", - "version": "0.0.3", + "version": "0.0.5", "type": "module", "files": [ "dist", diff --git a/src/index.css b/src/index.css index 61110e9..2fafad5 100644 --- a/src/index.css +++ b/src/index.css @@ -1,4 +1,6 @@ -@import "tailwindcss"; +@import "tailwindcss/theme.css"; +@import "tailwindcss/preflight.css"; +@import "tailwindcss/utilities.css"; @import "tw-animate-css"; @plugin "@tailwindcss/typography"; @@ -111,11 +113,11 @@ --sidebar-ring: oklch(0.556 0 0); } -@layer base { - * { - @apply border-border outline-ring/50; - } - body { - @apply bg-background text-foreground; - } -} +/* @layer base { */ +/* * { */ +/* @apply border-border outline-ring/50; */ +/* } */ +/* body { */ +/* @apply bg-background text-foreground; */ +/* } */ +/* } */ diff --git a/vite.config.ts b/vite.config.ts index 51c1d0f..da15814 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -65,6 +65,7 @@ export default defineConfig({ cssCodeSplit: false, rollupOptions: { external: [ + "react/jsx-runtime", ...Object.keys(pkg.dependencies || {}), ...Object.keys(pkg.peerDependencies || {}), ],