We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f30355 commit a94ccc6Copy full SHA for a94ccc6
1 file changed
projects/ngqp/core/src/lib/router-adapter/router-adapter.interface.ts
@@ -30,13 +30,15 @@ export interface RouterAdapter {
30
*/
31
export interface RouterOptions {
32
replaceUrl?: boolean;
33
+ preserveFragment?: boolean;
34
}
35
36
/**
37
* See {@link RouterOptions}.
38
39
export const DefaultRouterOptions: RouterOptions = {
40
replaceUrl: true,
41
+ preserveFragment: true,
42
};
43
44
/** @internal */
0 commit comments