This commit is contained in:
2026-05-02 20:45:40 +08:00
Unverified
parent bc5d3894cb
commit 955dc9b608
8 changed files with 1636 additions and 2054 deletions
+11 -1
View File
@@ -1,5 +1,15 @@
import { defineConfig } from "astro/config";
import { fileURLToPath } from "node:url";
export default defineConfig({
site: "https://example.com"
site: "https://example.com",
vite: {
resolve: {
alias: {
"astro/entrypoints/prerender": fileURLToPath(
new URL("./node_modules/astro/dist/entrypoints/prerender.js", import.meta.url)
)
}
}
}
});