mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
Ng19 migration (#4520)
This commit is contained in:
committed by
GitHub
parent
bcbdff9543
commit
5f5c238ccd
@@ -8,7 +8,9 @@
|
||||
"project": ["app/tsconfig.app.json", "app/tsconfig.spec.json"],
|
||||
"createDefaultProgram": true
|
||||
},
|
||||
"rules": {}
|
||||
"rules": {
|
||||
"@angular-eslint/prefer-standalone": "off"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@@ -201,7 +201,7 @@
|
||||
"serve": {
|
||||
"executor": "@angular-devkit/build-angular:dev-server",
|
||||
"options": {
|
||||
"browserTarget": "content-ce:build",
|
||||
"buildTarget": "content-ce:build",
|
||||
"port": 4200,
|
||||
"disableHostCheck": true,
|
||||
"open": true,
|
||||
@@ -209,16 +209,16 @@
|
||||
},
|
||||
"configurations": {
|
||||
"production": {
|
||||
"browserTarget": "content-ce:build:production"
|
||||
"buildTarget": "content-ce:build:production"
|
||||
},
|
||||
"e2e": {
|
||||
"browserTarget": "content-ce:build:e2e"
|
||||
"buildTarget": "content-ce:build:e2e"
|
||||
},
|
||||
"release": {
|
||||
"browserTarget": "content-ce:build:release"
|
||||
"buildTarget": "content-ce:build:release"
|
||||
},
|
||||
"adf": {
|
||||
"browserTarget": "content-ce:build:adf"
|
||||
"buildTarget": "content-ce:build:adf"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@@ -29,7 +29,8 @@ import { AppService } from '@alfresco/aca-shared';
|
||||
selector: 'app-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.scss'],
|
||||
encapsulation: ViewEncapsulation.None
|
||||
encapsulation: ViewEncapsulation.None,
|
||||
standalone: false
|
||||
})
|
||||
export class AppComponent {
|
||||
constructor(private appService: AppService) {
|
||||
|
@@ -28,7 +28,6 @@ import { TranslateModule } from '@ngx-translate/core';
|
||||
import { AppSettingsService } from '@alfresco/aca-shared';
|
||||
|
||||
@Component({
|
||||
standalone: true,
|
||||
imports: [LoginComponent, TranslateModule],
|
||||
templateUrl: './app-login.component.html',
|
||||
styles: [
|
||||
|
Reference in New Issue
Block a user