2024-01-14 17:55:34 +00:00
|
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
import react from "@astrojs/react";
|
|
|
|
import tailwind from "@astrojs/tailwind";
|
|
|
|
|
2024-07-06 10:39:36 +00:00
|
|
|
import node from "@astrojs/node";
|
2024-01-20 18:59:51 +00:00
|
|
|
|
2024-01-14 17:55:34 +00:00
|
|
|
// https://astro.build/config
|
|
|
|
export default defineConfig({
|
|
|
|
integrations: [react(), tailwind({
|
2024-01-20 18:59:51 +00:00
|
|
|
applyBaseStyles: false
|
|
|
|
})],
|
2024-01-26 17:32:32 +00:00
|
|
|
output: "server",
|
2024-07-06 10:39:36 +00:00
|
|
|
adapter: node({
|
|
|
|
mode: "standalone"
|
|
|
|
}),
|
2024-01-14 17:55:34 +00:00
|
|
|
});
|