vue3-core/packages/runtime-shared/index.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
193 B
JavaScript
Raw Normal View History

2024-05-01 19:01:57 +08:00
'use strict'
if (process.env.NODE_ENV === 'production') {
module.exports = require('./dist/runtime-shared.cjs.prod.js')
} else {
module.exports = require('./dist/runtime-shared.cjs.js')
}