mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
8 lines
187 B
JavaScript
8 lines
187 B
JavaScript
|
'use strict'
|
||
|
|
||
|
if (process.env.NODE_ENV === 'production') {
|
||
|
module.exports = require('./dist/runtime-dom.cjs.prod.js')
|
||
|
} else {
|
||
|
module.exports = require('./dist/runtime-dom.cjs.js')
|
||
|
}
|