diff --git a/bun.lockb b/bun.lockb index 5910ca0..80bc64f 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/packages/example/package.json b/packages/example/package.json index 7fb3e41..30edb47 100644 --- a/packages/example/package.json +++ b/packages/example/package.json @@ -18,16 +18,13 @@ "@types/react": "^19.0.4", "@types/react-dom": "^19.0.2", "@vitejs/plugin-react": "^4.3.4", - "autoprefixer": "^10.4.20", "effect": "^3.12.1", "eslint": "^9.17.0", "eslint-plugin-react-hooks": "^5.0.0", "eslint-plugin-react-refresh": "^0.4.16", "globals": "^15.14.0", - "postcss": "^8.4.49", "react": "^19.0.0", "react-dom": "^19.0.0", - "tailwindcss": "^3.4.17", "typescript": "~5.6.2", "typescript-eslint": "^8.18.2", "vite": "^6.0.5" diff --git a/packages/example/postcss.config.js b/packages/example/postcss.config.js deleted file mode 100644 index 72588e6..0000000 --- a/packages/example/postcss.config.js +++ /dev/null @@ -1,6 +0,0 @@ -export default { - plugins: { - tailwindcss: {}, - autoprefixer: {}, - } -} diff --git a/packages/example/src/index.css b/packages/example/src/index.css index b5c61c9..e69de29 100644 --- a/packages/example/src/index.css +++ b/packages/example/src/index.css @@ -1,3 +0,0 @@ -@tailwind base; -@tailwind components; -@tailwind utilities; diff --git a/packages/example/tailwind.config.js b/packages/example/tailwind.config.js deleted file mode 100644 index f802d2c..0000000 --- a/packages/example/tailwind.config.js +++ /dev/null @@ -1,11 +0,0 @@ -/** @type {import("tailwindcss").Config} */ -export default { - content: [ - "./index.html", - "./src/**/*.{js,ts,jsx,tsx}", - ], - theme: { - extend: {}, - }, - plugins: [], -}