Skip to content

Commit 1fc342e

Browse files
committed
fix: Fix import path
1 parent 4701025 commit 1fc342e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { choose } from './pluralization'
99
* Resolves the lang location, on a Laravel App.
1010
*/
1111
const defaultResolve = (lang: string): Promise<LanguageJsonFileInterface> => {
12-
return import(`../../../../resources/lang/${lang}.json`)
12+
return import(`../../../resources/lang/${lang}.json`)
1313
}
1414

1515
/**

0 commit comments

Comments
 (0)