fix(bridge): add meta to cjs wrapper (closes #671)

This commit is contained in:
Pooya Parsa 2021-10-07 10:43:00 +02:00
parent 11490cdd7d
commit 45726616b2

View File

@ -14,3 +14,11 @@ module.exports.defineNuxtConfig = (config = {}) => {
} }
return config return config
} }
const pkg = require('./package.json')
module.exports.meta = {
pkg,
name: pkg.name,
version: pkg.version
}