mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-19 18:25:51 +10:00
1. Support scope package and shortcut like plugin. 2. Support relative path for 'layout' and 'notFound' option.
8 lines
260 B
JavaScript
8 lines
260 B
JavaScript
const isDebug = process.argv.indexOf('--debug') !== -1
|
|
const isProduction = () => process.env.NODE_ENV === 'production'
|
|
const isTest = () => process.env.NODE_ENV === 'test'
|
|
|
|
exports.isDebug = isDebug
|
|
exports.isTest = isTest
|
|
exports.isProduction = isProduction
|