Skip to content

Commit

Permalink
test: resolve test path for windows compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
BobbieGoede committed Jan 24, 2025
1 parent 9fd2bc8 commit b4a0766
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion specs/utils/nuxt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export async function loadFixture(testContext: VitestContext) {
...(ctx.options.prerender ? { static: true } : {}),
output: {
dir: outputDir,
...(ctx.options.prerender ? { publicDir: outputDir + '/public' } : {})
...(ctx.options.prerender ? { publicDir: resolve(outputDir, 'public') } : {})
}
}
})
Expand Down

0 comments on commit b4a0766

Please sign in to comment.