File tree Expand file tree Collapse file tree 1 file changed +14
-1
lines changed
modules/router-store/schematics/ng-add/__snapshots__ Expand file tree Collapse file tree 1 file changed +14
-1
lines changed Original file line number Diff line number Diff line change 1- // Jest Snapshot v1, https://goo.gl/fbAQLP
1+ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
2+
3+ exports [` Router Store ng-add Schematic > Router Store ng-add Schematic for standalone application > provides initial setup 1` ] = `
4+ "import { ApplicationConfig , provideBrowserGlobalErrorListeners } from '@angular/core';
5+ import { provideRouterStore } from '@ngrx/router-store';
6+
7+ export const appConfig: ApplicationConfig = {
8+ providers : [
9+ provideBrowserGlobalErrorListeners (),
10+ provideRouterStore ()
11+ ]
12+ } ;
13+ "
14+ ` ;
215
316exports [` Router Store ng-add Schematic Router Store ng-add Schematic for standalone application provides initial setup 1` ] = `
417"import { ApplicationConfig , provideBrowserGlobalErrorListeners } from '@angular/core';
You can’t perform that action at this time.
0 commit comments