2025-09-05 14:59:21 +08:00

7 lines
239 B
JavaScript

// CommonJS proxy to bypass jiti transforms from nuxt 2 and using native ESM
exports.default = function (...args) {
return import('./index.mjs').then(m => m.default.call(this, ...args))
}
module.exports.meta = require('./package.json')