Coincidentally I cloned her repo and the same problem occurred. And yet the demo site works ok.
Any help in getting this straightened out is appreciated.
CodePudding user response:
Lucie here~
Indeed on the stream with Alex we used the alpha version of the kit. We have since released some breaking changes to the underlying client kit (because we're in alpha): the routes
parameter is no longer nested under defaultParams
, you should be fine going with something like this now:
import { createPrismic } from "@prismicio/vue";
const prismic = createPrismic({
endpoint: "mybestrecipes",
clientConfig: {
routes: [
{ type: "home", path: "/" },
{ type: "recipe", path: "/recipe/:uid" },
],
},
});
export default prismic;
The live demo is still working because still using an old version of the kit :relaxed: I'll update it later this week!
Let us know if anything!