https://github.com/byzyk/react-app-rewire-moment-locales-plugin
https://github.com/byzyk/react-app-rewire-moment-locales-plugin
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/byzyk/react-app-rewire-moment-locales-plugin
- Owner: byzyk
- License: mit
- Created: 2018-05-30T10:43:57.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-03T07:34:46.000Z (almost 7 years ago)
- Last Synced: 2025-04-09T21:48:42.764Z (about 1 month ago)
- Language: JavaScript
- Size: 20.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# react-app-rewire-moment-locales-plugin
> Add [`moment-locales-webpack-plugin`](https://github.com/iamakulov/moment-locales-webpack-plugin) to [`react-app-rewired`](https://github.com/timarney/react-app-rewired) config.
## Install
```sh
npm install --save-dev react-app-rewire-moment-locales-plugin
```## Usage
```js
const rewireMomentLocalesPlugin = require('react-app-rewire-moment-locales-plugin')module.exports = function override(config, env) {
// ...if (env === 'production') {
config = rewireMomentLocalesPlugin(config, env, {
localesToKeep: ['es-us', 'ru'] // optional
})
}return config
}
```## License
MIT © [Bohdan Khodakivskyi](https://bohdan-khodakivskyi.com)