mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-15 18:08:30 -07:00
2ba85ba8e1
Closes: #2197
12 lines
154 B
JavaScript
Vendored
12 lines
154 B
JavaScript
Vendored
const BUILD_ENVS = {
|
|
dev: 'development',
|
|
prod: 'production',
|
|
};
|
|
|
|
const BASE_URL = 'control';
|
|
|
|
module.exports = {
|
|
BUILD_ENVS,
|
|
BASE_URL,
|
|
};
|