Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
huntabyte committed Oct 25, 2024
1 parent bdd1d1a commit be8a307
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cli/src/utils/get-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ export async function resolveConfigPaths(cwd: string, config: RawConfig) {
);
}

const utilsPath = resolveImport(config.aliases.utils, pathAliases);
const componentsPath = resolveImport(config.aliases.components, pathAliases);
let utilsPath = resolveImport(config.aliases.utils, pathAliases);
let componentsPath = resolveImport(config.aliases.components, pathAliases);
const hooksPath = resolveImport(config.aliases.hooks, pathAliases);
const uiPath = resolveImport(config.aliases.ui, pathAliases);

Expand Down

0 comments on commit be8a307

Please sign in to comment.