-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
SSR localized routes problem with Multistore #3262
Comments
thanks, @grimasod; what struck me is that the only route that causes this problem is |
@pkarw I think it's more complicated than that, unfortunately. I get a mixture of fine (Products) and not fine (Home, Categories, Footer links). After the steps above, here's a selection of links:
Do you get a different outcome? |
It seems like there is some issue with |
@lukeromanowicz any progress on that? |
Issue reproduced but I haven't been able to investigate it yet. |
@lukeromanowicz can we close it just after #3331 ? |
Yes :) |
Problem fixed on next :) Well done :) |
Current behavior
In a multistore setup, all stores get the same localized routes in SSR, depending on which store was requested first.
Expected behavior
Each store should have correct localized routes in SSR
Steps to reproduce the issue
"storeViews": "multistore": true, ...
yarn build
and start the serveryarn start
view-source:http://localhost:3000
<a href
. The first result is the logo link<a href="/" title="Home Page" ...
view-source:http://localhost:3000/de
<a href="/" title="Home Page" ...
it should be/de/
yarn start
view-source:http://localhost:3000/de
<a href="/de/" title="Home Page" ...
view-source:http://localhost:3000
<a href="/de/" title="Home Page" ...
The same problem can be see on demo.storefrontcloud.io and next.storefrontcloud.io. See
view-source:https://next.storefrontcloud.io/de
- the routes are not localized.Repository
Can you handle fixing this bug by yourself?
Which Release Cycle state this refers to? Info for developer.
Pick one option.
develop
branch and create Pull Request2. Feature / Improvement
back todevelop
.release
branch and create Pull Request3. Stabilisation fix
back torelease
.hotfix
ormaster
branch and create Pull Request4. Hotfix
back tohotfix
.Environment details
Additional information
The text was updated successfully, but these errors were encountered: