diff options
Diffstat (limited to 'apps/extension/tailwind.config.js')
| -rw-r--r-- | apps/extension/tailwind.config.js | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/apps/extension/tailwind.config.js b/apps/extension/tailwind.config.js index fa014b43..84c01958 100644 --- a/apps/extension/tailwind.config.js +++ b/apps/extension/tailwind.config.js @@ -1,13 +1,13 @@ -import tailwindcssAnimate from 'tailwindcss-animate'; +import tailwindcssAnimate from "tailwindcss-animate"; /** @type {import('tailwindcss').Config} */ export default { darkMode: ["class"], content: [ - './pages/**/*.{ts,tsx}', - './components/**/*.{ts,tsx}', - './app/**/*.{ts,tsx}', - './src/**/*.{ts,tsx}', - 'index.html' + "./pages/**/*.{ts,tsx}", + "./components/**/*.{ts,tsx}", + "./app/**/*.{ts,tsx}", + "./src/**/*.{ts,tsx}", + "index.html", ], prefix: "anycontext-", theme: { @@ -36,4 +36,7 @@ export default { }, }, plugins: [tailwindcssAnimate], -}
\ No newline at end of file + corePlugins: { + preflight: false, + }, +}; |