First commit

This commit is contained in:
Jezza Hehn 2025-05-08 02:47:09 +00:00
commit ff66758387
18 changed files with 2215 additions and 0 deletions

11
vite.config.ts Normal file
View file

@ -0,0 +1,11 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
build: {
outDir: '/var/www/viossa.net',
emptyOutDir: true,
}
})