Initial commit: LynkedUp Fusion site

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Goutam
2026-07-17 14:51:13 +05:30
commit 74e52e9dcd
53 changed files with 9703 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import { defineConfig } from "vite";
import { fileURLToPath } from "node:url";
import path from "node:path";
const root = path.dirname(fileURLToPath(import.meta.url));
export default defineConfig({
base: "./",
server: { port: 4190 },
build: {
rollupOptions: {
input: {
main: path.resolve(root, "index.html"),
faq: path.resolve(root, "faq.html"),
blog: path.resolve(root, "blog/index.html"),
blogCostOfPaperwork: path.resolve(root, "blog/cost-of-paperwork/index.html"),
blogStormChecklist: path.resolve(root, "blog/48-hour-storm-checklist/index.html"),
blogClaimsDenied: path.resolve(root, "blog/why-claims-get-denied/index.html"),
terms: path.resolve(root, "terms/index.html"),
},
output: {
manualChunks: { three: ["three"], gsap: ["gsap"] },
},
},
},
});