SerKo
Explore posts from serversCDCloudflare Developers
•Created by SerKo on 10/25/2024 in #pages-help
Ways to ignore error from git submodule
I have some submodule in a monorepo, but it's not required for pages to build the app. Can I ignore submodule from clone or just ignore the error from build process in pages?
9 replies
CDCloudflare Developers
•Created by SerKo on 9/13/2024 in #pages-help
How can I ignore some sub modules when build ?
I have some private submodule in my repo but they dont need for building, how can I ignore them when building to prevent the fetch error from Cloudflare Pages builder ?
1 replies
Tree-Shaking does not work when using multiple stores in Nuxt
When using Pinia in a Nuxt project and creating more than one store, tree-shaking does not work as expected. Here's an example to illustrate the issue:
After running
nuxt generate
, both the foo
and bar
stores are bundled into the output, even though they are inside a conditional block that should never run.
However, if I use only one store within the if (false)
block, tree-shaking works as expected:
In this case, the unused store is successfully tree-shaken and not included in the bundle.
Reproduction
https://stackblitz.com/edit/github-dylldh?file=app.vue
GitHub Issue
https://github.com/vuejs/pinia/issues/27382 replies