Initial commit: Astro 6 migration with teal design

This commit is contained in:
Kunthawat Greethong
2026-04-22 12:35:39 +07:00
commit c2466c14f1
52 changed files with 11282 additions and 0 deletions

10
astro.config.mjs Normal file
View File

@@ -0,0 +1,10 @@
import { defineConfig } from 'astro/config';
import sitemap from '@astrojs/sitemap';
import tailwindcss from '@tailwindcss/vite';
export default defineConfig({
site: 'https://www.moreminimore.com',
integrations: [sitemap()],
vitePlugins: [tailwindcss()],
output: 'static'
});