Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ant-design/antd-moment-webpack-plugin

⏰ Replace Day.js to Moment.js webpack plugin for Ant Design
https://github.com/ant-design/antd-moment-webpack-plugin

Last synced: 30 days ago
JSON representation

⏰ Replace Day.js to Moment.js webpack plugin for Ant Design

Awesome Lists containing this project

README

        

# antd-moment-webpack-plugin

A webpack plugin to replace [Day.js](https://day.js.org/) to [Moment.js](http://momentjs.com/) automatically.

## Installation
```bash
npm install --save-dev @ant-design/moment-webpack-plugin
```

## Usage
```js
// webpack-config.js
import AntdMomentWebpackPlugin from '@ant-design/moment-webpack-plugin';

module.exports = {
// ...
plugins: [new AntdMomentWebpackPlugin()],
};
```