Open pirmax opened 2 years ago
Not sure if you figured this out since, but your feed(feed){}
should be create(feed){}
, if you want a function on a per-feed basis. You can alternatively use a function for the feed
property of your nuxt config (which is an array in your code) and return an array of feed configs.
Your nuxt.config.js should be
{
feed: [
// ...
create(feed) {}
]
}
or
{
feed() {
return [
{
// ...
create(feed) {}
}
]
}
}
The basic exemple of this module not working...
I haven't error, but the result is:
The code in nuxt.config.js:
I very need of this module :/