I'm using Nuxt 2 with Slicemachine 0.6.1 and I'm trying to create a slice as I usually do, and adding the simplest slice with the default title and description fields creates the component in the slices library folder as expected. However, the slicezone component just outputs "Could not find a component for Slice type "text_block"
I've tried multiple times, including completely resetting my slices by deleting them all in my local repo as well as within Prismic using the Custom Type API, but this just happens every time I try adding a new slice in Slice Machine.
The Slice Simulator doesn't render anything either.
No - I had a few but none of them worked, so I removed them all and started again, adding the simplest one using Slice Machine's default fields Title and Description.
My /slices/index.js is as follows:
// Code generated by Slice Machine. DO NOT EDIT.
import TextBlock from './TextBlock';
export {
TextBlock,
};
export const components = {
text_block: TextBlock,
};