This commit is contained in:
2020-08-19 22:55:44 +02:00
parent 312c8754bc
commit b84aa3db45
18 changed files with 1184 additions and 146 deletions

View File

@@ -10,6 +10,10 @@ class Config {
const [user] = this.repo.split('/');
return user;
}
get isProd() {
return process.env.NODE_ENV === 'production';
}
}
export default new Config();