Sponsor webpack and get apparel from the official shop! All proceeds go to our open collective!
i18n (localization) plugin for Webpack.
npm i -D i18n-webpack-plugin
This plugin creates bundles with translations baked in. So you can serve the translated bundle to your clients.
see webpack/webpack/examples/i18n.
plugins: [
...
new I18nPlugin(languageConfig, optionsObj)
],
optionsObj.functionName
: the default value is __
, you can change it to other function name.optionsObj.failOnMissing
: the default value is false
, which will show a warning message, if the mapping text cannot be found. If set to true
, the message will be an error message.optionsObj.hideMessage
: the default value is false
, which will show the warning/error message. If set to true
, the message will be hidden.optionsObj.nested
: the default value is false
. If set to true
, the keys in languageConfig
can be nested. This option is interpreted only if languageConfig
isn't a function.Juho Vepsäläinen | Joshua Wiens | Kees Kluskens | Sean Larkin |