mandelbrot: adding a simple version of mandelbrot

This commit is contained in:
Sheldan
2026-02-04 20:06:25 +01:00
parent ef162a7dc2
commit 0cd89ad975
6 changed files with 519 additions and 1 deletions

View File

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