simple new blog

This commit is contained in:
2026-01-15 17:19:43 +09:00
parent b344a0a760
commit cf46369cd0
52 changed files with 1590 additions and 3174 deletions

14
vite.config.ts Normal file
View File

@@ -0,0 +1,14 @@
import { defineConfig } from 'vite'
export default defineConfig({
root: '.',
publicDir: 'public',
build: {
outDir: 'dist',
emptyDirBeforeWrite: true,
},
server: {
port: 3000,
host: '0.0.0.0',
},
})