Skip to content

Commit

Permalink
Remove redundant directives option check
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbrunel committed Jul 22, 2022
1 parent c9ddb90 commit c169def
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/resolvers/bootstrap-vue.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export function BootstrapVueResolver(_options: BootstrapVueResolverOptions = {})
resolvers.push({
type: 'directive',
resolve: (name) => {
if (options.directives && name.match(/^B[A-Z]/)) {
if (name.match(/^B[A-Z]/)) {
return {
name: `V${name}`,
from: 'bootstrap-vue',
Expand Down

0 comments on commit c169def

Please sign in to comment.