Matas Petrikas
Matas Petrikas
same here, with the Pod version JSONWebToken (2.2.0)
same here, the deployment fails as well
@kettanaito @ivanhofer is this coming into the next release?
here's something that has worked for us, maybe it will help someone too - In the i18n config, disable the nextJs locale detection, like: ```js { locales: ['en', 'de', 'ja'],...
so to summarize the issue - the incremental migration to the app router is not possible for localized NextJs apps, right?
it looks that the `locale` is not being updated in getServerSideProps/getStaticProps from the `next` version `13.4.13`, at least what [this issue](https://github.com/vercel/next.js/issues/53967) seems to suggest:
Thanks Rob, we will fix the manifests then accordingly 🙏
I have also found more info in the issue is here: https://github.com/video-dev/hls.js/issues/5378
here's our jest config, just in case: ```ts import type { JestConfigWithTsJest } from 'ts-jest'; const ignoredModules = ['next/server'].join('|'); const jestConfig: JestConfigWithTsJest = { preset: 'ts-jest/presets/js-with-ts', testPathIgnorePatterns: ['./.next/', './node_modules/'], setupFilesAfterEnv:...
I can confirm that the problem still persists in 2022. I'm using the current versions of msw 0.36.8 and cypress 9.3.1. `cy.route` captures the mocked graphql request, but `cy.intercept` doesn't....