You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a sveltekit project where I have a multiple images, css files, and fonts under /static folder.
When I build with sveltekit-adapter-appengine, I get this message:
You've exceeded the maximum number of routes (99) allowed in AppEngine app.yaml, and you have 113 routes.
This often happens when you have a lot of static assets.
If possible, use vites asset importing instead: https://kit.svelte.dev/docs/assets
Now when I look at the build/app.yaml file, each file's route is generated, causing the above error, such as:
Is there any way to get away with this error other than moving the static folder under /src such as generating the app.yaml file maybe just like below? (fix me if my syntaxes are wrong)
I have a sveltekit project where I have a multiple images, css files, and fonts under /static folder.
When I build with sveltekit-adapter-appengine, I get this message:
Now when I look at the build/app.yaml file, each file's route is generated, causing the above error, such as:
Is there any way to get away with this error other than moving the static folder under /src such as generating the app.yaml file maybe just like below? (fix me if my syntaxes are wrong)
The text was updated successfully, but these errors were encountered: