feat: add deploy script that builds directly to ../public_html

This commit is contained in:
2026-03-14 21:55:04 +03:00
parent 534bdd3bb5
commit aa6a972ce6
3 changed files with 8 additions and 6 deletions

View File

@@ -4,6 +4,6 @@ import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
build: {
outDir: 'dist',
outDir: process.env.BUILD_DIR || 'dist',
},
})