Hello,
i believe its just a small oversight but i couldnt locate the error..
@Injectable({scope: Scope.DEFAULT})
export class BlogService implements OnApplicationBootstrap{
public blogEntry: Blog[] ;
constructor(private readonly supabase: Supabase ) {
console.log('BlogService')
}
onApplicationBootstrap() {
console.log(`The module has been initialized.`);
}
another Modul changes the scope to request and i whant this one do go back to default but id dont whant to what did i miss :(?