diff options
| author | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
|---|---|---|
| committer | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
| commit | 6dcc7d18c9be5e3a5e0a3ff60668424ee0158b4e (patch) | |
| tree | 179aa936536510cc707368fc7c330c4c7fbdc3f8 /apps/extension/tailwind.config.js | |
| parent | novel editor (diff) | |
| parent | save user ID with url to ensure that same website can be saved by users (diff) | |
| download | supermemory-new-ui.tar.xz supermemory-new-ui.zip | |
Merge branch 'main' of https://github.com/Dhravya/supermemory into new-uinew-ui
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, + }, +}; |