-
-
Notifications
You must be signed in to change notification settings - Fork 483
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bundle.onlyLocales
not working for SFC
#2588
Comments
Hmm that's odd, specifically when using multiple This functionality is powered by |
@BobbieGoede thank you very much for single block hint - I didn't know :) But different blocks is also problem - and I have opened issue in their repository: intlify/bundle-tools#329 |
@BobbieGoede I fixed this bug, the issue can be closed when the packages |
|
Can confirm this is resolved in v9, since it depends on a breaking dependency update this can't be backported to v8. Modified reproduction using v9 here https://stackblitz.com/edit/alexbidenko-i18n-problem-icaomd?file=nuxt.config.ts |
Environment
"nuxt": "^3.8.2"
"@nuxtjs/i18n": "^8.0.0-rc.6"
"node": "20.7.0"
Reproduction
https://github.com/alexbidenko/i18n-problem
Just
pnpm i
,pnpm build
andpnpm preview
. In network tab of dev tools you can see, that both of lacales exists in bundle.P.S. in example I use
Lazy
for component, but and without it problem is same.Lazy
is added for better visibility in the network tabDescribe the bug
New
bundle.onlyLocales
feature is very usefull, but not working for Single File Component locales. If I use<i18n>
blocks in component, every locales will be included in result bundle. Expected result is only locales described inbundle.onlyLocales
will be included.Additional context
Motivation.
If project is large (hundreds of pages with tens of locales) that performance will be bad. For optimization is usefull build different versions of site for every locales. Every build will contains only one locale. And every page (or components) of every build will contains self locale strings. Then every locales will be downloaded to browser optimized.
Logs
No response
The text was updated successfully, but these errors were encountered: