---
title: NavigationOptions
---

# NavigationOptions

<a href="https://github.com/remix-run/remix/blob/remix@3.0.0-alpha.6/packages/ui/src/runtime/navigation.ts#L17" target="_blank">View Source</a>

## Summary

Options for client-side frame-aware navigation.

## Signature

```ts
type NavigationOptions = {
  history?: "push" | "replace";
  resetScroll?: boolean;
  src?: string;
  target?: string;
};

```