16 lines
364 B
JavaScript
16 lines
364 B
JavaScript
import { defineConfig } from "astro/config";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
export default defineConfig({
|
|
site: "https://example.com",
|
|
vite: {
|
|
resolve: {
|
|
alias: {
|
|
"astro/entrypoints/prerender": fileURLToPath(
|
|
new URL("./node_modules/astro/dist/entrypoints/prerender.js", import.meta.url)
|
|
)
|
|
}
|
|
}
|
|
}
|
|
});
|