mirror of
https://github.com/jorgev259/soc_site-astro.git
synced 2025-06-29 07:57:41 +00:00
14 lines
No EOL
321 B
JavaScript
14 lines
No EOL
321 B
JavaScript
import { defineConfig } from 'astro/config';
|
|
import tailwind from "@astrojs/tailwind";
|
|
import node from "@astrojs/node";
|
|
|
|
import auth from "auth-astro";
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
integrations: [tailwind(), auth()],
|
|
output: "server",
|
|
adapter: node({
|
|
mode: "standalone"
|
|
})
|
|
}); |