Passing data from the Express to the nuxt
[issue link]I want to set the parameters for the page from the express like csrf token and other parameter from the express code. How to do this
app.js
const nuxt = new Nuxt(config);
app.use(require('./routes'));
app.use(nuxt.render);
In routes the data is created and I want to pass this to the my page how to do this.