mirror of
https://github.com/withastro/astro.git
synced 2024-12-23 21:53:55 -05:00
19 lines
432 B
JavaScript
19 lines
432 B
JavaScript
|
import { defineConfig } from 'astro/config';
|
||
|
import nodejs from '@astrojs/node';
|
||
|
import react from '@astrojs/react';
|
||
|
import tailwind from '@astrojs/tailwind';
|
||
|
|
||
|
// https://astro.build/config
|
||
|
export default defineConfig({
|
||
|
output: 'server',
|
||
|
adapter: nodejs({ mode: 'standalone' }),
|
||
|
integrations: [
|
||
|
react(),
|
||
|
tailwind({ applyBaseStyles: false })
|
||
|
],
|
||
|
devToolbar: { enabled: false },
|
||
|
experimental: {
|
||
|
serverIslands: true,
|
||
|
}
|
||
|
});
|