pub const HTML_VITE_CONFIG_JS: &str = "import { defineConfig } from \"vite\";\n\nexport default defineConfig({\n base: \"./\",\n build: {\n rollupOptions: {\n input: \"index.html\",\n },\n assetsInlineLimit: 100_000, // inline images/fonts up to ~100kb, save server space, enforce this?\n },\n});\n";