0.14 -> 0.15 migration + fly
I migrated from wasp 0.14 to 0.15 in my openSaaS app. After following the instructions here: https://wasp-lang.dev/docs/migration-guides/migrate-from-0-14-to-0-15 everything works great locally, but when I try to deploy on fly.io with I get the following error, which I think might have to do with React Router 5->6:
$ REACT_APP_API_URL=https://korean-language-app-server.fly.dev npm run build
Validating environment variables...
src/router.tsx(76,13): error TS2741: Property 'children' is missing in type '{}' but required in type '{ children: ReactNode; }'.
file:///home/myusername/.local/share/wasp-lang/0.15.0/data/packages/deploy/node_modules/zx/build/core.js:146
let output = new ProcessOutput(code, signal, stdout, stderr, combined, message);
$ REACT_APP_API_URL=https://korean-language-app-server.fly.dev npm run build
OpenSaaS@0.0.0 build
npm run validate-env && tsc && vite build
OpenSaaS@0.0.0 validate-env
node -r dotenv/config ./scripts/validate-env.mjs
src/router.tsx(76,13): error TS2741: Property 'children' is missing in type '{}' but required in type '{ children: ReactNode; }'.
file:///home/myusername/.local/share/wasp-lang/0.15.0/data/packages/deploy/node_modules/zx/build/core.js:146
let output = new ProcessOutput(code, signal, stdout, stderr, combined, message);
