@react-router/dev 0.0.0-experimental-fbc98d36c → 0.0.0-experimental-6336d71a9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli/index.js +1 -1
- package/dist/config.js +1 -1
- package/dist/internal.d.ts +9 -0
- package/dist/internal.js +2358 -0
- package/dist/routes.js +1 -1
- package/dist/vite/cloudflare.js +1 -1
- package/dist/vite.d.ts +1 -3
- package/dist/vite.js +104 -1010
- package/package.json +10 -6
package/dist/cli/index.js
CHANGED
package/dist/config.js
CHANGED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as Vite from 'vite';
|
|
2
|
+
|
|
3
|
+
declare function reactRouterRSCVitePlugin(): Vite.PluginOption[];
|
|
4
|
+
|
|
5
|
+
declare const __INTERNAL_DO_NOT_USE_OR_YOU_WILL_GET_A_STRONGLY_WORDED_LETTER__: {
|
|
6
|
+
unstable_reactRouterRSC: typeof reactRouterRSCVitePlugin;
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export { __INTERNAL_DO_NOT_USE_OR_YOU_WILL_GET_A_STRONGLY_WORDED_LETTER__ };
|