Joseph
Joseph
@sam3d I had to take a moment to re-do the entire thing, my code had changed quite a lot from the fork. Now I have it all running on TypeScript,...
@sam3d Ah I gave it a go, but I am not sure how am I to point to the wasm file, if its hashed, and placed inside .next, because that's...
@pmacg I too vouch for this PR, seems to work swell. @haskellcamargo any comments?
I think you have to mock the location object with something like: ``` global.window = Object.create(window); const url = "http://dummy.com"; Object.defineProperty(window, 'location', { value: { href: url } ```
Hi, The problem here is that you have to consider that, there's a network boundary when you do: ```jsx export default function Home() { return ( {/* other stuff */}...
But the error is because you are passing a function, the `as` prop, that is the reason for the crash. A function can't be serialized. You have to change it...
Hi, You have this line: ```tsx const [items, setItems] = useState(getSavedData() || initialData || []); ``` JavaScript works with Applicative Order, so `getSavedData()` is called. Internally that functions does this...
You also have this: - https://github.com/krishnaacharyaa/nextjs-explore/blob/main/app/page.tsx#L7 That won't fly when you try to build the application. Please refer to these documentation entries, where this issue has been expanded upon: -...
Hi, yeah I just answered there. Please don't forget to close the issue, if you think it is resolved.
This is still an issue. Though there's a workaround in Next 14.1.0, with `getImageProps`, and at the risk of having bad UI because of not applying the color transparent. -...