Configure astro

This commit is contained in:
Sam Carlton 2022-04-25 16:45:09 -05:00
parent d72f57d94d
commit c0d182a5de

15
astro.config.mjs Normal file
View file

@ -0,0 +1,15 @@
import { defineConfig } from 'astro/config'
import vue from '@astrojs/vue'
import tailwind from '@astrojs/tailwind'
// https://astro.build/config
export default defineConfig({
srcDir: './src-astro',
publicDir: './static',
site: 'https://doesitarm.com',
integrations: [
vue(),
tailwind()
]
});