mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 21:14:14 +00:00
11 lines
194 B
JavaScript
11 lines
194 B
JavaScript
// tailwind.config.js
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./src/**/*.{html,ts,js}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
darkMode: "class",
|
|
};
|