I’m trying to integrate my Webflow DevLink components into a Next.js application. After running the npx webflow devlink sync
command successfully, I try to start the app with npm run dev
, but I run into the following error:
The export createIX2Engine was not found in module [project]/devlink/devlink.js [app-ssr] (ecmascript).
Did you mean to import default?
All exports of the module are statically known (It doesn’t have dynamic exports). So it’s known statically that the requested export doesn’t exist.
When I inspect the devlink.js
file inside the generated devlink
folder, I see this:
var y1 = { createIX2Engine: JF };
export { y1 as default };
This seems to be a mismatch between the export and import style. We’re not modifying anything manually inside the devlink
folder—this is all auto-generated.
Is this a bug in the CLI? Or is there something wrong with my setup? How can I fix this?
I am using the following versions:
webflow-cli version: 1.7.1
Next.js version: 15.3.2
npm version: 11.4.0
Any help is appreciated!