0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-03-17 23:11:29 -05:00
astro/examples/spa/astro.config.mjs
2022-03-26 05:37:40 -05:00

11 lines
212 B
JavaScript

import { defineConfig } from 'astro/config';
import spa from "@astrojs/spa";
import vue from "@astrojs/vue";
// https://astro.build/config
export default defineConfig({
integrations: [
spa(),
vue()
]
});