https://github.com/angular/angular
Raw File
Tip revision: bd8c08a2843819541be44d5bc17f82dc3a2ee945 authored by Jessica Janiuk on 30 August 2023, 18:24:50 UTC
release: cut the v17.0.0-next.2 release
Tip revision: bd8c08a
error_details_base_url.ts
/**
 * @license
 * Copyright Google LLC All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file at https://angular.io/license
 */

/**
 * Base URL for the error details page.
 *
 * Keep this constant in sync across:
 *  - packages/compiler-cli/src/ngtsc/diagnostics/src/error_details_base_url.ts
 *  - packages/core/src/error_details_base_url.ts
 */
export const ERROR_DETAILS_PAGE_BASE_URL = 'https://angular.io/errors';

/**
 * URL for the XSS security documentation.
 */
export const XSS_SECURITY_URL = 'https://g.co/ng/security#xss';
back to top