This commit is contained in:
2025-02-02 03:59:42 -06:00
parent 3bde86f983
commit 29c3523233
3 changed files with 16 additions and 1 deletions

View File

@ -6,6 +6,8 @@ import node from "@astrojs/node";
import react from "@astrojs/react";
import robots from "astro-robots";
// https://astro.build/config
export default defineConfig({
vite: {
@ -18,5 +20,5 @@ export default defineConfig({
mode: "standalone",
}),
integrations: [react()],
integrations: [react(), robots()],
});