mirror of
https://github.com/withastro/astro.git
synced 2025-07-26 21:44:09 +08:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
// @ts-check
|
|
|
|
import vue from '@astrojs/vue';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
// https://astro.build/config
|
|
export default defineConfig({
|
|
// Enable Vue to support Vue components.
|
|
integrations: [vue()],
|
|
});
|