Skip to content

Commit

Permalink
chore: fixed resolver error
Browse files Browse the repository at this point in the history
  • Loading branch information
vtrbo committed Aug 11, 2023
1 parent 01de641 commit c828d8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/content.ts
Expand Up @@ -177,7 +177,7 @@ export class Content {

export function resolveOptions(options: ImagesResolverOptions = {}): ResolvedImagesResolverOptions {
const rawPrefix = options.prefix ?? DEFAULT_PREFIX
const prefix = rawPrefix ? `${toLinesCase(rawPrefix)}-` : ''
const prefix = rawPrefix ? toLinesCase(rawPrefix) : ''

const dirs: Dir[] = []

Expand Down

0 comments on commit c828d8c

Please sign in to comment.