aboutsummaryrefslogtreecommitdiff
path: root/benchmark/frontend/tailwind.config.ts
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/frontend/tailwind.config.ts')
-rw-r--r--benchmark/frontend/tailwind.config.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/benchmark/frontend/tailwind.config.ts b/benchmark/frontend/tailwind.config.ts
new file mode 100644
index 000000000..d4d3fa295
--- /dev/null
+++ b/benchmark/frontend/tailwind.config.ts
@@ -0,0 +1,9 @@
+import { type Config } from "tailwindcss";
+
+export default {
+ content: ["./src/**/*.{js,ts,jsx,tsx}"],
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+} satisfies Config;