blob: d05a6d44be3c98a5937ac6f2fb71a83382666217 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [react(), tailwindcss()],
publicDir: "public-vite",
server: {
port: 3000,
},
});
|