Created
March 15, 2017 16:04
-
-
Save rap2hpoutre/a6e84f84f669f3210d54db7bb23d399b to your computer and use it in GitHub Desktop.
This file contains 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
// ... | |
let webpack = require("webpack"); | |
mix.webpackConfig({ | |
plugins: [ | |
// Choose the language you want to keep (Ex: "fr") | |
new webpack.ContextReplacementPlugin(/moment[\/\\]locale$/, /fr/) | |
] | |
}); |
Is there a way allow more than one language?
For more than one language you can use regex. I haven't tested the code below, but it should work.
let webpack = require("webpack");
mix.webpackConfig({
plugins: [
// Choose the language you want to keep (Ex: "fr")
new webpackContextReplacementPlugin(/moment[\\\/]locale$/, /^\.\/(fr|en)$/)
]
});
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this at the end of your webpack.mix.js. It will work only if you use momentJS (but it seems it's included every time in my projects, I don't know why btw)
Credit: http://stackoverflow.com/questions/25384360/how-to-prevent-moment-js-from-loading-locales-with-webpack