feat: add initial Astro project structure and components
This commit is contained in:
23
astro.config.mjs
Normal file
23
astro.config.mjs
Normal file
@ -0,0 +1,23 @@
|
||||
import { defineConfig } from 'astro/config';
|
||||
|
||||
import react from '@astrojs/react';
|
||||
import tailwindcss from '@tailwindcss/vite';
|
||||
import icon from 'astro-icon';
|
||||
|
||||
// https://astro.build/config
|
||||
export default defineConfig({
|
||||
integrations: [
|
||||
react(),
|
||||
icon({
|
||||
include: {
|
||||
ph: ['*'],
|
||||
logos: ['*'],
|
||||
mdi: ['*']
|
||||
}
|
||||
})
|
||||
],
|
||||
|
||||
vite: {
|
||||
plugins: [tailwindcss()]
|
||||
}
|
||||
});
|
Reference in New Issue
Block a user