confirmed bun

This commit is contained in:
dswbx
2024-11-27 17:13:01 +01:00
parent b6e3c934c4
commit b940488c8f
2 changed files with 2 additions and 2 deletions

View File

@@ -37,7 +37,7 @@ export function serve(_config: Partial<CreateAppConfig> = {}, distPath?: string)
"app-built", "app-built",
async () => { async () => {
app.modules.server.get( app.modules.server.get(
"/assets/*", "/*",
serveStatic({ serveStatic({
root root
}) })

View File

@@ -19,7 +19,7 @@ Bun.serve({
config, config,
// this is only required to run inside the same workspace // this is only required to run inside the same workspace
// leave blank if you're running this from a different project // leave blank if you're running this from a different project
"../../node_modules/bknd/dist" "../../app/dist"
) )
}); });