Skip to content

Commit

Permalink
Merge pull request #27 from formsible/feat/components
Browse files Browse the repository at this point in the history
fix manifest route
  • Loading branch information
tewnut authored Oct 30, 2024
2 parents f7e92d8 + e20bff6 commit 5382261
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,20 +31,17 @@ declare module 'vue' {
Html_block_list: typeof import('./src/components/html_block_list/index.vue')['default']
Html_block_media: typeof import('./src/components/html_block_media/index.vue')['default']
Image_choice: typeof import('./src/components/image_choice/index.vue')['default']
InputText: typeof import('primevue/inputtext')['default']
Likert_scale: typeof import('./src/components/likert_scale/index.vue')['default']
List: typeof import('./src/components/list/index.vue')['default']
Locale_selector: typeof import('./src/components/locale_selector/index.vue')['default']
Long_text: typeof import('./src/components/long_text/index.vue')['default']
Message: typeof import('primevue/message')['default']
Multiple_choice: typeof import('./src/components/multiple_choice/index.vue')['default']
Net_promoter_score: typeof import('./src/components/net_promoter_score/index.vue')['default']
Number: typeof import('./src/components/number/index.vue')['default']
Page_break: typeof import('./src/components/page_break/index.vue')['default']
Password: typeof import('./src/components/password/index.vue')['default']
Password: typeof import('primevue/password')['default']
Payment: typeof import('./src/components/payment/index.vue')['default']
Phone_number: typeof import('./src/components/phone_number/index.vue')['default']
ProgressSpinner: typeof import('primevue/progressspinner')['default']
Range: typeof import('./src/components/range/index.vue')['default']
Ranking: typeof import('./src/components/ranking/index.vue')['default']
Rating_scale: typeof import('./src/components/rating_scale/index.vue')['default']
Expand All @@ -53,7 +50,6 @@ declare module 'vue' {
Signature: typeof import('./src/components/signature/index.vue')['default']
Slider: typeof import('./src/components/slider/index.vue')['default']
Term_of_service: typeof import('./src/components/term_of_service/index.vue')['default']
Textarea: typeof import('primevue/textarea')['default']
Time_picker: typeof import('./src/components/time_picker/index.vue')['default']
Website: typeof import('./src/components/website/index.vue')['default']
}
Expand Down
2 changes: 1 addition & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default defineConfig({
plugins: [
copy({
targets: [
{ src: 'manifest.json', dest: 'dist' }, // Adjust 'dist' to match your output directory
{ src: 'src/manifest.json', dest: 'dist' }, // Adjust 'dist' to match your output directory
],
hook: 'writeBundle', // Ensures it runs after the build is done
})],
Expand Down

0 comments on commit 5382261

Please sign in to comment.