extremely claude-assisted go game based on atproto! working on cleaning up and giving a more unique design, still has a bit of a slop vibe to it.
1import { sveltekit } from "@sveltejs/kit/vite";
2import { defineConfig } from "vite";
3import path from "path";
4
5export default defineConfig({
6 plugins: [sveltekit()],
7 server: {
8 port: 5173,
9 // Allow all hosts (for ngrok and other tunnels)
10 allowedHosts: true,
11 },
12 resolve: {
13 alias: {
14 jgoboard: path.resolve(__dirname, 'node_modules/jgoboard/main.js'),
15 },
16 },
17});