This commit is contained in:
2025-11-26 13:48:13 +08:00
commit 82a13f4aad
62 changed files with 10778 additions and 0 deletions

11
astro.config.mts Normal file
View File

@@ -0,0 +1,11 @@
import { defineConfig } from 'astro/config';
import tailwindcss from '@tailwindcss/vite';
// https://astro.build/config
export default defineConfig({
site: 'https://rockem.github.io',
base: 'astro-photography-portfolio',
vite: {
plugins: [tailwindcss()],
},
});