Skip to content

Commit 1c814f8

Browse files
authored
fix: await copyStaticExport (#374)
1 parent 93036f7 commit 1c814f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build/content/static.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ export const copyStaticAssets = async (ctx: PluginContext): Promise<void> => {
6767
}
6868

6969
export const copyStaticExport = async (ctx: PluginContext): Promise<void> => {
70-
tracer.withActiveSpan('copyStaticExport', async () => {
70+
await tracer.withActiveSpan('copyStaticExport', async () => {
7171
try {
7272
await rm(ctx.staticDir, { recursive: true, force: true })
7373
await cp(ctx.resolveFromSiteDir('out'), ctx.staticDir, { recursive: true })

0 commit comments

Comments
 (0)