Skip to content

Commit

Permalink
fix: incorrect option name in the warning message (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
nykko7 authored Dec 13, 2022
1 parent da81da4 commit b81b2cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/core/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export async function resolveClientOptions (moduleContainer, moduleOptions, logg
if (typeof (options.customClientIntegrations) === 'string') {
customClientIntegrations = moduleContainer.nuxt.resolver.resolveAlias(options.customClientIntegrations)
} else {
logger.warn(`Invalid customServerIntegrations option. Expected a file path, got "${typeof (options.customClientIntegrations)}".`)
logger.warn(`Invalid customClientIntegrations option. Expected a file path, got "${typeof (options.customClientIntegrations)}".`)
}
}

Expand Down

0 comments on commit b81b2cf

Please sign in to comment.