Rick
Rick
I created a global declaration file `types/fix.d.ts` under the root folder and added the codes as a temporary fix ```ts import '@radix-ui/react-dialog' declare module '@radix-ui/react-dialog' { export interface DialogPortalProps {...
After some spike, I found in webpack `development` mode ordinary css file generates codes with four `\`, while unocss uses string replace finally outputs codes with only one `\`, after...
I met the same error. Try to add `'use server'` to `lib/actions/user.actions.ts` file to enable the server action, add ``` experimental: { serverActions: true } ``` to `next.config.js` file, it...
I'm using the latest next.js and I don't need the `serverComponentsExternalPackages` config, seems the errors are on browser, maybe you can try to add it to your `next.config.js` file, it...
In my case once `use server` is added to the top of my user action file everything works fine, the error still looks like your codes run on client side,...