Skip to content
This repository was archived by the owner on May 8, 2025. It is now read-only.

Commit 48d3f4b

Browse files
committed
fix(locales): change resolved path
1 parent 4375675 commit 48d3f4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

util/locales.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const LOCALE_MAP = {
2121
'zh-Hant': 'Chinese (traditional)'
2222
}
2323

24-
module.exports = fs.readdirSync(resolve('../node_modules/vuetify/src/locale')).map(locale => {
24+
module.exports = fs.readdirSync('node_modules/vuetify/src/locale').map(locale => {
2525
const value = locale.split('.').shift()
2626

2727
return { name: LOCALE_MAP[value], value }

0 commit comments

Comments
 (0)