Initial commit

This commit is contained in:
Андрей 2026-03-07 17:10:42 +00:00
commit 4f9a581530
25 changed files with 2946 additions and 0 deletions

11
playground/vite.config.ts Normal file
View file

@ -0,0 +1,11 @@
import path from "node:path";
import { defineConfig } from "vite";
export default defineConfig({
root: path.resolve(__dirname),
resolve: {},
server: {
open: true,
port: 3200,
},
});