Fix admin wasm bootstrap and dashboard routing
TaxBaik CI/CD / build-and-deploy (push) Failing after 3m32s

This commit is contained in:
2026-07-08 01:00:35 +09:00
parent ece81306fb
commit d38275e9c7
6 changed files with 30 additions and 23 deletions
+7 -1
View File
@@ -436,7 +436,13 @@ app.Use(async (context, next) =>
if (path.Contains("resource-collection") && path.EndsWith(".js"))
{
context.Response.ContentType = "application/javascript";
await context.Response.WriteAsync("export default [];");
await context.Response.WriteAsync("""
export function get() {
return [];
}
export default { get };
""");
return;
}
await next();