I'm trying to specify a meta object for a route auto-generated for me by Gridsome, like this:
meta: {
auth: true
}
But there isn't a normal routes/index.js file in Gridsome - only a router object exposed like this in index.js:
export default function (Vue, { router, head, isClient })
{}
How do I reach into the router and add the meta to the specific routes I want to modify?