mirror of
https://github.com/Instadapp/vue-web3.git
synced 2024-07-29 21:48:25 +00:00
7 lines
174 B
JavaScript
7 lines
174 B
JavaScript
|
'use strict'
|
||
|
|
||
|
if (process.env.NODE_ENV === 'production') {
|
||
|
module.exports = require('./dist/vue-web3.prod.cjs')
|
||
|
} else {
|
||
|
module.exports = require('./dist/vue-web3.cjs')
|
||
|
}
|