first commit

This commit is contained in:
simple321vip
2026-06-29 22:14:33 +08:00
commit 21b4897005
7 changed files with 5636 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// @ts-check
import { defineConfig } from 'astro/config'
// https://astro.build/config
export default defineConfig({
site: 'https://cv.violin-work.online',
server: {
host: '0.0.0.0',
port: 4321
},
build: {
outDir: 'dist'
}
})