major: statically-generated resume with Vike

This commit is contained in:
Avraham Sakal
2025-08-24 15:13:02 -04:00
parent 0d820466d0
commit 3b47596a57
21 changed files with 6108 additions and 394 deletions
+19
View File
@@ -0,0 +1,19 @@
import { pages } from "vike-cloudflare";
import react from "@vitejs/plugin-react";
import { compiled } from "vite-plugin-compiled-react";
import vike from "vike/plugin";
import { defineConfig } from "vite";
export default defineConfig({
plugins: [
vike(),
compiled({
extract: true,
}),
react(),
pages(),
],
build: {
target: "es2022",
},
});