draw things doodl.waow.tech
draw atproto
0

Configure Feed

Select the types of activity you want to include in your feed.

doodl / vite.config.ts
429 B 10 lines
1import { defineConfig } from "vite"; 2 3// absolute base: required so nested SPA routes (e.g. /l/<did>/<rkey>) resolve 4// assets at /assets/... regardless of depth. on the custom domain the site is 5// at root so this is already correct; on the canonical /{did}/{site}/ URL, 6// wisp's serve-time rewriter rewrites root-relative URLs under the base path. 7export default defineConfig({ 8 base: "/", 9 build: { target: "esnext" }, 10});