/
parkovki
/
frontend
Обзор
Документация
Войти
/
parkovki
/
frontend
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
main
angular.json
134 строки
4 KB
Ivan
fix: deduplicate allowedHosts array to satisfy Angular CLI schema validation
11 авг 2026, 16:00
11 авг 2026, 16:00
b51585e
Код
Авторство
О чём код?
{ "$schema": "./node_modules/@angular/cli/lib/config/schema.json", "version": 1, "cli": { "packageManager": "bun" }, "newProjectRoot": "projects", "projects": { "parkovki-online": { "projectType": "application", "schematics": { "@schematics/angular:component": { "style": "scss" } }, "root": "", "sourceRoot": "src", "prefix": "app", "architect": { "build": { "builder": "@angular/build:application", "options": { "browser": "src/main.ts", "tsConfig": "tsconfig.app.json", "inlineStyleLanguage": "scss", "assets": [ { "glob": "**/*", "input": "public" } ], "styles": [ "src/styles.css" ], "server": "src/main.server.ts", "outputMode": "server", "security": { "allowedHosts": [ "193.233.91.229", "localhost", "xn--80aesgbwej.online", "xn--80aaf5abwej.space", "xn--80aaf5abwej.online", "frontend", "frontend:4000" ] }, "prerender": false, "ssr": { "entry": "src/server.ts" } }, "configurations": { "production": { "budgets": [ { "type": "initial", "maximumWarning": "1.25MB", "maximumError": "2MB" }, { "type": "anyComponentStyle", "maximumWarning": "45kB", "maximumError": "50kB" } ], "outputHashing": "all" }, "staging": { "fileReplacements": [ { "replace": "src/environments/environment.ts", "with": "src/environments/environment.staging.ts" } ], "outputHashing": "all" }, "development": { "fileReplacements": [ { "replace": "src/environments/environment.ts", "with": "src/environments/environment.development.ts" } ], "optimization": false, "extractLicenses": false, "sourceMap": true } }, "defaultConfiguration": "production" }, "serve": { "builder": "@angular/build:dev-server", "options": { "proxyConfig": "proxy.conf.json" }, "configurations": { "production": { "buildTarget": "parkovki-online:build:production" }, "staging": { "buildTarget": "parkovki-online:build:staging" }, "development": { "buildTarget": "parkovki-online:build:development" } }, "defaultConfiguration": "development" }, "test": { "builder": "@angular/build:unit-test" }, "lint": { "builder": "@angular-eslint/builder:lint", "options": { "eslintConfig": "eslint.config.mjs", "lintFilePatterns": [ "src/**/*.ts", "src/**/*.html" ], "cache": true, "cacheLocation": ".angular/cache/eslint/parkovki-online", "concurrency": "auto" }, "configurations": { "ci": { "maxWarnings": 0 } } } } } } }