1
Fork 0
This repository has been archived on 2025-04-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
astro-supabase-demo/astro.config.mjs
2024-07-16 02:05:26 -04:00

12 lines
222 B
JavaScript

import { defineConfig } from "astro/config";
import node from "@astrojs/node";
export default defineConfig({
output: "server",
adapter: node({
mode: "standalone",
}),
security: {
checkOrigin: true
}
});