blob: d05a6d44be3c98a5937ac6f2fb71a83382666217 (
plain) (
tree)
|
|
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,
},
});
|