firecmsco / firecms

Awesome Firebase/Firestore-based CMS. The missing admin panel for your Firebase project!
https://firecms.co
Other
1.14k stars 185 forks source link

SyntaxError: Cannot use import statement outside a module #464

Closed borsemayur2 closed 1 year ago

borsemayur2 commented 1 year ago

Getting mentioned error for import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";

Working fine with Vite React app but getting this error with NextJS 13.1.2.

image

borsemayur2 commented 1 year ago

Fixed after using dynamic import with ssr: false

fgatti675 commented 1 year ago

Hi @borsemayur2 We have not really tested FireCMS with next.js since it's a frontend focused app, but ssr: false should work. What is your use case?

borsemayur2 commented 1 year ago

ssr: false did work. I'm integrating firecms for blog creation with the existing nextjs app hosted on firebase. Thanks