11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
/* Vite config */
|
|
import { defineConfig } from "vite";
|
|
|
|
/* Vite plugins */
|
|
import react from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
export default defineConfig({
|
|
plugins: [react(), tailwindcss()],
|
|
});
|