mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-22 02:47:45 +00:00
c5f6d9116e
depracated husky usage - Replace Webpack with Vite for faster client bundling and HMR. - Migrate tests from Jest to Vitest and update configuration. - Update Web Worker instantiation to standard ESM syntax. - Implement Env utility in `src/core` for safe, hybrid environment variable access (Vite vs Node). - Refactor configuration loaders to remove direct `process.env` dependencies in shared code. - Update TypeScript environment definitions and project scripts for the new toolchain. - Remove the [depracated usage of the husky](https://github.com/typicode/husky/releases/tag/v9.0.1). build(vite): implement robust git commit resolution with fallback
11 lines
210 B
JavaScript
Executable File
11 lines
210 B
JavaScript
Executable File
// tailwind.config.js
|
|
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: ["./index.html", "./src/**/*.{html,ts,js}"],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
darkMode: "class",
|
|
};
|