This repository was archived by the owner on Apr 22, 2024. It is now read-only.
- Sponsor
-
Notifications
You must be signed in to change notification settings - Fork 41
How can I using yaml format in locale files instead of json format? #14
Comments
Hi @mutoe, You need to add module.exports = {
chainWebpack: config => {
config.module
.rule("yaml")
.test(/\.ya?ml$/)
.use("json-loader")
.loader("json-loader")
.end()
.use("yaml-loader")
.loader("yaml-loader");
},
}; @kazupon It works, but Vue UI crash on boot if I use yaml files:
|
@CHYMZ thank you! it is works for me! XD |
It still doesn't work for me, because I don't know how to combine support for Support fort tags:
Support for yaml:
Documentation doesn't show it in a Vue Cli 3 config format and I'm not that experienced to create it myself. EDIT: |
I had this kind of error: Cannot find module 'yml-loader!@/locales/en.yml' from 'i18n.js'
I also replaced it with '@/locales/en.yml' from 'i18n.js' |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I use the yml format instead of the json format in the locale file because it is very simple to write.
But I got these warnings when I load yml format file
Can you give me some advice? Thanks :)
The text was updated successfully, but these errors were encountered: