I like to know if there is a way to access in a plugin the context variables? Which other variables / objects exists apart from the "process" object? Unfortunately I could not found a clear description nor a reference about the "process" object at the nuxt side
i.e. plugins/helper.js
const myHelper = {
helpFunction(arg) {
if (process.server) {
...
}
return ...;
},