We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 38429a1 commit 9299762Copy full SHA for 9299762
.changeset/deep-bushes-live.md
@@ -0,0 +1,5 @@
1
+---
2
+'@builder.io/qwik-city': minor
3
4
+
5
+remove double assetsDir on bundle close of staticPaths
packages/qwik-city/src/buildtime/vite/plugin.ts
@@ -277,10 +277,9 @@ function qwikCityPlugin(userOpts?: QwikCityVitePluginOptions): any {
277
const clientOutDir = qwikPlugin!.api.getClientOutDir();
278
279
if (outDir && clientOutDir) {
280
- const assetsDir = qwikPlugin!.api.getAssetsDir();
281
const { staticPathsCode, notFoundPathsCode } = await postBuild(
282
clientOutDir,
283
- assetsDir ? join(api.getBasePathname(), assetsDir) : api.getBasePathname(),
+ api.getBasePathname(),
284
[],
285
ssrFormat,
286
false
0 commit comments