balls: adding initial version of balls

This commit is contained in:
Sheldan
2025-08-08 18:56:46 +02:00
parent 68d7096ca8
commit ea49c1c41a
9 changed files with 2419 additions and 1 deletions

9
balls/vite.config.js Normal file
View File

@@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: './',
root: 'src',
build: {
outDir: '../../dist/balls'
}
})