Add SSR contact form
All checks were successful
Build and Deploy to Web Server / deploy (push) Successful in 18m1s

This commit is contained in:
2025-08-29 11:36:58 +09:30
parent 1c3b37a70c
commit e46a4a560a
8 changed files with 1881 additions and 17 deletions

View File

@@ -14,6 +14,8 @@ import robotsTxt from "astro-robots-txt";
import { transformerMetaHighlight } from "@shikijs/transformers";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
vite: {
@@ -51,12 +53,15 @@ export default defineConfig({
},
site: "https://www.nathancummins.com.au",
trailingSlash: "always",
image: {
responsiveStyles: false
},
output: "static"
});
output: "static",
adapter: node({
mode: "standalone"
})
});