Due to configuration specifics on static.datenhub.net, we do not automatically serve the index file for a given directory (/example/route/index.html when /example/route/ is requested). To mitigate this, I'd suggest we manually add index.html to the links in ChartList when building for production.
I suggest to simply add the .html postfix, as route configuration in SvelteKit defaults to:
export const trailingSlash = 'never';
– which means prerending HTML files like this: path/my-route.html, not like this path/my-route/index.html.
Due to configuration specifics on static.datenhub.net, we do not automatically serve the index file for a given directory (
/example/route/index.htmlwhen/example/route/is requested).To mitigate this, I'd suggest we manually addindex.htmlto the links in ChartList when building for production.I suggest to simply add the
.htmlpostfix, as route configuration in SvelteKit defaults to:– which means prerending HTML files like this:
path/my-route.html, not like thispath/my-route/index.html.