Connor Langlois
Connor Langlois
I believe I know partially what is happening here, just ran into this issue myself. It seems that if you have a module that does top-level await conditionally, then the...
Just wanted to add that it would be nice if for `maxUnits` we could also specify another option like `roundingMethod` with values `'floor' | 'ceil' | 'round'`. date-fns has this...
@damianobarbati > @BB-19 is not working for me, what version of next are you using? > > ```shell > error - ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[2].oneOf[8].use[1]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[2].oneOf[8].use[2]!./src/styles/index.css > /Users/damians/Desktop/predator/tailwind.config.cjs:29 > export {}; > ^^^^^^ >...
> That isn't an SSR/SSG framework. It's definitely possible to implement, but it isn't trivial either. Thus I'm genuinely curious if there is an SSR/SSG framework out there that supports...
> An easy way to test is this: can you create a Next.js app that defines a parameterized route but outputs only one `.html` file (for multiple URLs)? Yes I...
Hello, by reroute do you mean if I go to `/product/54387` directly in the address bar and have the server rewrite it to the `[id].html` file does it load that...
Yeah it will still show `/product/54387` in the address bar when cloudflare serves `[id].html`. [This express example shows this by using sendFile](https://stackoverflow.com/a/72336790), specifically: ```js app.get('/blog/:blogID', sendFile('blog/[blogID].html')); ```
> > Dove a little deeper into this. Turns out it is due to `react-native-tab-view` using a function as style prop for `Pressable` in [PlatformPressable](https://github.com/react-navigation/react-navigation/blob/cfebf105844ac1674eee28ec1ff4ccd30e7895ee/packages/react-native-tab-view/src/PlatformPressable.tsx#L59-L67). > > I found a...