Skip to content

Commit

Permalink
chore: update html service options
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsoncodehk committed Oct 6, 2023
1 parent 2064a7b commit 46db156
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue-language-service/src/plugins/vue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export interface Provide {

export const create = (): Service<Provide> => (context: ServiceContext<import('volar-service-typescript').Provide> | undefined, modules): ReturnType<Service<Provide>> => {

const htmlPlugin = createHtmlPlugin({ validLang: 'vue', disableCustomData: true })(context, modules);
const htmlPlugin = createHtmlPlugin({ languageId: 'vue', useCustomDataProviders: false })(context, modules);

if (!context)
return htmlPlugin as any;
Expand Down

0 comments on commit 46db156

Please sign in to comment.