mirror of
https://github.com/LukeHagar/arbiter.git
synced 2025-12-06 20:37:49 +00:00
8 lines
171 B
JavaScript
8 lines
171 B
JavaScript
'use strict'
|
|
|
|
if (process.env.NODE_ENV === 'production') {
|
|
module.exports = require('./dist/vue.cjs.prod.js')
|
|
} else {
|
|
module.exports = require('./dist/vue.cjs.js')
|
|
}
|