mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-27 14:15:52 +10:00
15 lines
208 B
JavaScript
15 lines
208 B
JavaScript
class ENV {
|
|
constructor () {
|
|
this.isDebug = false
|
|
this.isTest = false
|
|
this.isProduction = false
|
|
}
|
|
|
|
setOptions (options) {
|
|
Object.assign(this, options)
|
|
}
|
|
}
|
|
|
|
module.exports = new ENV()
|
|
|