Recreate and reconfigured project

This commit is contained in:
2026-03-23 20:44:51 -03:00
parent ea2770829d
commit 3b70b2934f
27 changed files with 4653 additions and 1696 deletions
+8 -5
View File
@@ -1,8 +1,11 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react-swc'
import tailwindcss from '@tailwindcss/vite'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// https://vite.dev/config/
export default defineConfig({
plugins: [react(), tailwindcss()],
})
plugins: [react()],
build: {
outDir: "../Sites/EsteticaProd",
emptyOutDir: true,
},
});