2021-12-10 02:37:01 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright Google LLC All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
2024-09-20 15:23:15 +00:00
|
|
|
* found in the LICENSE file at https://angular.dev/license
|
2021-12-10 02:37:01 +00:00
|
|
|
*/
|
|
|
|
|
|
2025-05-08 13:20:37 +00:00
|
|
|
import {ApplicationEnvironment, Environment} from '../projects/ng-devtools';
|
2021-12-09 05:44:17 +00:00
|
|
|
|
|
|
|
|
import {environment} from './environments/environment';
|
2020-04-02 23:23:03 +00:00
|
|
|
|
|
|
|
|
export class DemoApplicationEnvironment extends ApplicationEnvironment {
|
2025-05-08 13:20:37 +00:00
|
|
|
override frameSelectorEnabled = false;
|
|
|
|
|
|
2023-12-04 19:44:53 +00:00
|
|
|
override get environment(): Environment {
|
2020-04-02 23:23:03 +00:00
|
|
|
return environment;
|
|
|
|
|
}
|
|
|
|
|
}
|