Completed crosshair, slider, and scroll hooks.

This commit is contained in:
Jay
2025-07-23 11:05:47 -04:00
parent d224f335e9
commit 051c6602b5
7 changed files with 794 additions and 129 deletions
+5 -10
View File
@@ -1,17 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
wasm(),
topLevelAwait(),
],
plugins: [react(), wasm(), topLevelAwait()],
server: {
port: 5173,
}
})
},
});