vue3-core/packages/vue-compat/index.js

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

8 lines
171 B
JavaScript
Raw Permalink Normal View History

2021-04-03 23:55:44 +08:00
'use strict'
if (process.env.NODE_ENV === 'production') {
module.exports = require('./dist/vue.cjs.prod.js')
2021-04-03 23:55:44 +08:00
} else {
module.exports = require('./dist/vue.cjs.js')
2021-04-03 23:55:44 +08:00
}