Skip to content

Commit

Permalink
fix: append datocms to start of component names, as per docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jamiewarb committed Mar 24, 2023
1 parent 75526d8 commit c7adc01
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,14 @@ export default defineNuxtModule<ModuleOptions>({
components: [
{
name: 'Image',
export: 'DatocmsImage',
kebabName: 'datocms-image',
pascalName: 'DatocmsImage',
filePath: 'vue-datocms',
},
{
name: 'StructuredText',
export: 'DatocmsStructuredText',
kebabName: 'datocms-structured-text',
pascalName: 'DatocmsStructuredText',
filePath: 'vue-datocms',
},
],
Expand Down

0 comments on commit c7adc01

Please sign in to comment.