Add core project configs

This commit is contained in:
Kunthawat Greethong
2026-04-17 19:35:59 +07:00
commit 0346bb797b
7 changed files with 6379 additions and 0 deletions

14
astro.config.mjs Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'astro/config';
import tailwind from '@astrojs/tailwind';
export default defineConfig({
integrations: [tailwind()],
output: 'static',
build: {
format: 'directory'
},
server: {
port: 3004,
host: true
}
});