mirror of
https://github.com/bitwarden/browser
synced 2026-02-05 11:13:44 +00:00
Adds standalone: false to all components since Angular is changing the default to true and we'd rather not have the angular PR change 300+ files.
9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-header",
|
|
templateUrl: "header.component.html",
|
|
standalone: false,
|
|
})
|
|
export class HeaderComponent {}
|