When the vercel build runs turbo and we get a "FULL TURBO" message, the resulting site is completely blank. The html on the page that is shown does not contain svelte's app.html, but rather the default vite start page (see https://tilly-styles-m935l6pr3-norsktest.vercel.app/)
<!doctype html><html lang="en"> <head> <meta charset="UTF-8" /> <link rel="icon" type="image/svg+xml" href="/vite.svg" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Vite App</title> </head> <body> <div id="app"></div> <script type="module" src="/main.js"></script> </body></html>If I redeploy everything works as expected.
Any idea where I should start looking..?