mirror of
https://github.com/notherealmarco/WASAPhoto.git
synced 2025-03-14 14:16:15 +01: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')
|
||
|
}
|