Migrate to forgejo

This commit is contained in:
Morg 2025-05-25 10:34:01 +02:00
commit af654ff353
50 changed files with 8357 additions and 0 deletions

16
vite.config.ts Normal file
View file

@ -0,0 +1,16 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { analyzer } from 'vite-bundle-analyzer'
export default defineConfig({
plugins: [
vue(),
analyzer(),
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
})