Playground settings
Some checks failed
CI / build (push) Failing after 22s

This commit is contained in:
Andrey Kernichniy 2026-03-04 02:22:29 +07:00
parent 47e9cf85b8
commit 63818eb2b8
9 changed files with 1122 additions and 3 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,
},
});