Error: unexpected top-level await at node_modules/ttf2woff2/dist/index.js:9
Closed this issue · 1 comments
timint commented
Error: unexpected top-level await at node_modules/ttf2woff2/dist/index.js:9
ttf2woff2 = (await import('bindings')).default('addon.node').convert;
Using Node v23.1.0. I tried upgrading image2woff2 to 6.0.1 but the error remains.
From my gulpfile.mjs:
import iconfont from 'gulp-iconfont';
I also tried this:
import { createRequire } from 'node:module';
const require = createRequire(import.meta.url);
const iconfont = require('gulp-iconfont');