2022-03-17 08:31:01 -04:00
|
|
|
import { defineConfig } from 'astro/config';
|
2022-03-18 15:35:45 -07:00
|
|
|
import svelte from '@astrojs/svelte';
|
2022-04-03 16:02:57 -03:00
|
|
|
import node from '@astrojs/node';
|
2022-02-14 12:48:52 -05:00
|
|
|
|
2022-03-18 15:35:45 -07:00
|
|
|
// https://astro.build/config
|
2022-03-15 15:27:17 -05:00
|
|
|
export default defineConfig({
|
2022-04-03 16:02:57 -03:00
|
|
|
adapter: node(),
|
2022-03-18 15:35:45 -07:00
|
|
|
integrations: [svelte()],
|
2022-02-14 12:48:52 -05:00
|
|
|
});
|