mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
\#64806 drops the `href` part of `SamePageMessageBus` URIs. This creates a conflict, which breaks the directive explorer, between the prod Devtools (i.e. the extension) and the dev Devtools app due to the backend URIs using the same string for both prod and dev.
10 lines
333 B
TypeScript
10 lines
333 B
TypeScript
/**
|
|
* @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.dev/license
|
|
*/
|
|
|
|
export const DEVTOOLS_FRONTEND_URI = 'angular-devtools-dev';
|
|
export const DEVTOOLS_BACKEND_URI = 'angular-devtools-dev-backend';
|