7 lines
239 B
JavaScript
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')
|