From 3b940bb0862491ae9b2453695f468c20b9d0c80b Mon Sep 17 00:00:00 2001 From: ShafSpecs Date: Wed, 30 Oct 2024 18:27:02 +0100 Subject: [PATCH] chore: fixed sandbox vite config --- playground/vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playground/vite.config.ts b/playground/vite.config.ts index 7250acc5..81534cdd 100644 --- a/playground/vite.config.ts +++ b/playground/vite.config.ts @@ -12,7 +12,7 @@ export default defineConfig({ plugins: [ remix({ ignoredRouteFiles: ["**/.*"], - appDirectory: spaMode ? './spa' : './src/app', + appDirectory: spaMode ? './spa' : './app', ssr: !spaMode, future: { unstable_singleFetch: false