Last active
November 25, 2020 09:55
-
-
Save titusdecali/b40fbd16601f5bd43e1e0e98761d7f20 to your computer and use it in GitHub Desktop.
config file for vue-translation-manager
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const path = require("path"); | |
const { JSONAdapter } = require("vue-translation-manager"); | |
module.exports = { | |
srcPath: path.join(__dirname, "src/"), | |
adapter: new JSONAdapter({ | |
path: path.join(__dirname, "src/locales/"), | |
}), | |
languages: ["ko", "en", "es", "ja", "zh"], | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment