Karibash
Karibash
I think this is the simplest solution. ```tsx import Image from 'next/future/image'; const OriginalImage = Image.default; Object.defineProperty(Image, 'default', { configurable: true, value: props => , }); ```
> I ran into the same issue and could track it to this change: [f29ab08#diff-d62fd402ee470b9082046b4a435f031dd8539650efc92ac2ea645f8ded2a4c57R55](https://github.com/facebook/lexical/commit/f29ab08dbf9c0b14b89ebef44fa243e712d817ad#diff-d62fd402ee470b9082046b4a435f031dd8539650efc92ac2ea645f8ded2a4c57R55) > > If you remove the "." from the `PUNCTUATION_OR_SPACE` regex, then the issue disappears....
@stovmascript It has not been released yet, but it looks like the option to use SWCLoader is already supported on the [Storybook side](https://github.com/storybookjs/storybook/blob/next/docs/api/main-config-framework.md#optionsbuilderuseswc). Maybe we can archive storybook-addon-swc already.
@yusukebe What do you think about this?
@yusukebe Thanks for the reply. Sounds easy enough, I'll give it a try. I think I can get a PR out by the end of tomorrow.
@dfloresgonz The cause of the problem is that the request header is an object. As I fixed this problem, please see below. https://github.com/Karibash/aws-serverless-express-edge/commit/d4a80f14b39e33d8822f44d8267629818ae2030c
Hi @Integrayshaun > v2 of addon-styling will support vanilla-extract. Wow. That's great. I look forward to the official release of v2! > Can you tell me more about your project?...
@mdjermanovic Ah... I'm sorry, it wasn't a bug. The issue was that I mistakenly ran it on v8 instead of v9. It seems that the name property has also become...
Thanks for the suggestion! Yes, I’m aware of the webpack-node-externals package, and I believe it could also work with Rsbuild. That said, what I see as one of the big...
By the way, I do have one question: while using Rslib with autoExternal can indeed address this need, is it actually intended to be used for building Node.js applications? Since...