feat: url normalization and http(s) allowlist

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Michael Chihlas
2026-05-08 17:44:44 -04:00
parent 1e4bd8082b
commit 45adba1643
5 changed files with 483 additions and 3 deletions

View File

@@ -1,3 +1,4 @@
/// <reference types="vitest" />
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import tailwindcss from "@tailwindcss/vite";
@@ -16,4 +17,8 @@ export default defineConfig(async () => ({
: undefined,
watch: { ignored: ["**/src-tauri/**"] },
},
test: {
environment: "node",
include: ["src/**/*.test.ts"],
},
}));