We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b1ce74c commit 5457981Copy full SHA for 5457981
dist/app.d.ts
@@ -6,12 +6,16 @@ import Handoff from '.';
6
*/
7
declare const buildApp: (handoff: Handoff) => Promise<void>;
8
/**
9
- * Watch the next js application
+ * Watch the next js application.
10
+ * Starts a custom dev server with Handoff-specific watchers and hot-reloading.
11
+ *
12
* @param handoff
13
14
export declare const watchApp: (handoff: Handoff) => Promise<void>;
15
16
+ * Watch the next js application using the standard Next.js dev server.
17
+ * This is useful for debugging the Next.js app itself without the Handoff overlay.
18
19
20
21
export declare const devApp: (handoff: Handoff) => Promise<void>;
0 commit comments