Я получаю ошибку "Cookie “_ga” will be soon rejected because it has the “sameSite” attribute set to “none” or an invalid value, without the “secure” attribute. To know more about the “sameSite“ attribute, read https://developer.mozilla.org/docs/Web/HTTP/Headers/Set-Cookie/SameSite"
в firefox. Это у меня на сайте. Я построил его с помощью angular и использую аналитику firebase. Есть ли способ его удалить?
@NgModule({
declarations: [
AppComponent,
NavbarComponent,
LandscapesComponent,
AboutComponent,
PortraitsComponent,
ExperimentalComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
AngularFireModule.initializeApp({
apiKey: "xxxxxxxxxxxxxx",
authDomain: "comsma-photography.firebaseapp.com",
databaseURL: "https://comsma-photography.firebaseio.com",
projectId: "comsma-photography",
storageBucket: "comsma-photography.appspot.com",
messagingSenderId: "xxxxxxxxxx",
appId: "xxxxxxxxxxxxxxxx",
measurementId: "xxxxxxxxxxxx"
}),
AngularFireStorageModule,
AppRoutingModule,
ReactiveFormsModule,
AngularFireAnalyticsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}