We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68b3fb5 commit 005438cCopy full SHA for 005438c
site/vite.config.mts
@@ -3,6 +3,7 @@ import * as path from "node:path";
3
import { visualizer } from "rollup-plugin-visualizer";
4
import { defineConfig, type PluginOption } from "vite";
5
import checker from "vite-plugin-checker";
6
+import tailwindcss from "tailwindcss"
7
8
const plugins: PluginOption[] = [
9
react(),
@@ -21,6 +22,11 @@ if (process.env.STATS !== undefined) {
21
22
23
export default defineConfig({
24
plugins: plugins,
25
+ css: {
26
+ postcss: {
27
+ plugins: [tailwindcss],
28
+ },
29
30
publicDir: path.resolve(__dirname, "./static"),
31
build: {
32
outDir: path.resolve(__dirname, "./out"),
0 commit comments