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 63b4789 commit 3a6fc62Copy full SHA for 3a6fc62
1 file changed
README.md
@@ -44,6 +44,7 @@ npm install remix-development-tools
44
2. Add the following to your application `root.tsx` file:
45
46
```diff
47
+// We'll lazy load RemixDevTools to ensure it doesn't contribute to production bundle size
48
+ import { lazy } from "react";
49
+ import rdtStylesheet from "remix-development-tools/stylesheet.css";
50
+ const RemixDevTools = lazy(() => import("remix-development-tools");
0 commit comments