Lukas Prochazka
Lukas Prochazka
I got the same error when creating a slide deck. After some digging, I found that the problem was in the file `node-mdules/gatsby/dist/query/file-parser.js` https://github.com/gatsbyjs/gatsby/blob/61f197d2c6deda2d45ba185df190301bb8219676/packages/gatsby/src/query/file-parser.js#L509-L517 After changing the `if` block the...
Hi @OrKoN! I hope you're doing well. I saw the issue @Josehower posted about the differences between the waitForNetworkIdle and waitForNavigation methods when searching for an image. I wrote a...
Maybe also a weird behavior. The test fails less frequently when running the code inside a loop and executing multiple times in a row. Maybe there is less idle time...
Also have the same issue when deploying a Next.js 14 app directory project with `type: module` in `package.json`. ``` ReferenceError - module is not defined in ES module scope This...
@MarcL @orinokai, Opt-in the [Next.js Runtime `v5`](https://docs.netlify.com/frameworks/next-js/overview/#prerequisites) (`@netlify/[email protected]`) resolved the issue. These are my steps to update `@netlify/plugin-nextjs` to `v5`: 1. Re-deploying your Next.js application on Netlify 2. Opt-In to...
I was able to successfully implement this using the `[email protected]` version and the App Router in the `app/` directory. In case you'd like to see a small reproduction project, I've...
I encountered the error `SyntaxError: Cannot use import statement outside a module` while using the `pages/` directory in Next.js. I've created a small reproduction project on [CodeSandbox](https://codesandbox.io/p/sandbox/tilt-test-pages-r3mvnn?file=%2Fpages%2Findex.tsx&selection=%5B%7B%22endColumn%22%3A14%2C%22endLineNumber%22%3A24%2C%22startColumn%22%3A14%2C%22startLineNumber%22%3A24%7D%5D) to showcase the...
Here's a related issue on the Facebook React Native repo - https://github.com/facebook/react-native/pull/41421 This PR discusses adding types for `require.context`. Do you believe it's still necessary to implement types for `require.context`...
@Simek @karlhorky I can confirm that the updated `reset-project.js` script is now included in the stable SDK 52 release. ``` ➜ expo-test git:(main) pnpm reset-project > [email protected] reset-project /Users/lukas/Documents/UpLeveled/expo-test >...
@Simek @tchayen @jonsamp After some time using the `reset-project` script, it’s great that it resets the project, but it does leave the `app-example` folder and the script itself behind. Cleaning...