
* chore(apps): setup prettier + eslint for all our apps * fix(docs): Fixed the use of implicit any type * chore(apps): Added .eslintignore files
12 lines
238 B
JavaScript
12 lines
238 B
JavaScript
import tailwind from '@astrojs/tailwind';
|
|
import { defineConfig } from 'astro/config';
|
|
|
|
export default defineConfig({
|
|
site: 'https://astro-reactive.dev',
|
|
integrations: [tailwind()],
|
|
vite: {
|
|
ssr: {
|
|
external: ['svgo'],
|
|
},
|
|
},
|
|
});
|