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
Right now, a props handler file needs to export a handler function. It should be possible to omit this handler and only export cache options. In this scenario, the route can skip the props request in SPA mode while still having access to cache options.
Alternatives:
Keep functions/props/routeName.js naming and check the content to see whether handler funciton is exported or not.
Use functions/props/routeName.static.js naming.
Use functions/props/routeName.json naming. -- It seems nice but it wouldn't have type auto completion.
The text was updated successfully, but these errors were encountered:
Right now, a props handler file needs to export a
handler
function. It should be possible to omit thishandler
and only export cache options. In this scenario, the route can skip the props request in SPA mode while still having access to cache options.Alternatives:
functions/props/routeName.js
naming and check the content to see whetherhandler
funciton is exported or not.functions/props/routeName.static.js
naming.functions/props/routeName.json
naming. -- It seems nice but it wouldn't have type auto completion.The text was updated successfully, but these errors were encountered: