mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 00:33: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.
11 lines
175 B
TypeScript
11 lines
175 B
TypeScript
import { Component } from "@angular/core";
|
|
|
|
@Component({
|
|
selector: "app-root",
|
|
template: "",
|
|
standalone: false,
|
|
})
|
|
export class AppComponent {
|
|
title = "components";
|
|
}
|