Bug
After I moved to bun and js module I got this error:
real code (nextjs 13 module)
const Cal = dynamic(() => import("@calcom/embed-react") as Cal, { ssr: false });
...
package.json
{
"name": "@nobletary/feature-appointment",
"version": "0.1.0",
"type": "module",
"private": true,
"main": "src/client.js",
"types": "src/client.ts",
"scripts": {
"...": "",
"build": "bun build --target=browser src/client.ts --outfile=src/client.js"
},
"dependencies": {
"@calcom/embed-react": "1.3.0",
"@nobletary/types": "workspace:*",
"@nobletary/utils": "workspace:*",
"next": "13.4.19",
"react": "18.2.0"
},
"devDependencies": {
"typescript": "5.2.2",
"upd": "2.9.5"
}
}