visual upgrade
ci / build-and-design (push) Failing after 13s

This commit is contained in:
Jason Stedwell
2026-07-23 04:23:19 -05:00
parent 9d7f593307
commit 822d8e41e6
53 changed files with 7757 additions and 285 deletions
+17
View File
@@ -0,0 +1,17 @@
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
css: {
postcss: fileURLToPath(new URL("./postcss.config.cjs", import.meta.url)),
},
build: {
outDir: "dist-demo",
emptyOutDir: true,
rollupOptions: {
input: fileURLToPath(new URL("./demo.html", import.meta.url)),
},
},
});