Skip to content

Commit c169def

Browse files
committed
Remove redundant directives option check
1 parent c9ddb90 commit c169def

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/resolvers/bootstrap-vue.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export function BootstrapVueResolver(_options: BootstrapVueResolverOptions = {})
7272
resolvers.push({
7373
type: 'directive',
7474
resolve: (name) => {
75-
if (options.directives && name.match(/^B[A-Z]/)) {
75+
if (name.match(/^B[A-Z]/)) {
7676
return {
7777
name: `V${name}`,
7878
from: 'bootstrap-vue',

0 commit comments

Comments
 (0)