Fixing up build errors

This commit is contained in:
Rishi Ghan
2026-04-14 12:51:29 -04:00
parent 91e99c50d9
commit 4e53f23e79
11 changed files with 115 additions and 37 deletions

View File

@@ -1,7 +1,7 @@
import { addDynamicIconSelectors } from "@iconify/tailwind";
import type { Config } from "tailwindcss";
/** @type {import('tailwindcss').Config} */
module.exports = {
const config: Config = {
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
darkMode: "class",
theme: {
@@ -43,3 +43,5 @@ module.exports = {
plugins: [addDynamicIconSelectors()],
};
export default config;