2024-08-22 02:42:13 -05:00
|
|
|
import { defineConfig } from 'astro/config'
|
|
|
|
import vue from '@astrojs/vue'
|
2024-09-04 02:04:41 -05:00
|
|
|
import node from '@astrojs/node'
|
2024-08-15 20:39:49 -05:00
|
|
|
|
|
|
|
// https://astro.build/config
|
2024-08-22 02:42:13 -05:00
|
|
|
export default defineConfig({
|
2024-09-04 02:04:41 -05:00
|
|
|
integrations: [vue()],
|
|
|
|
output: 'server',
|
|
|
|
adapter: node({
|
|
|
|
mode: 'standalone',
|
|
|
|
}),
|
|
|
|
experimental: {
|
|
|
|
serverIslands: true
|
|
|
|
}
|
2024-08-22 02:42:13 -05:00
|
|
|
});
|