Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/react-doc/copy-markdown-image-webpack-plugin

Copy Markdown in the picture resources.
https://github.com/react-doc/copy-markdown-image-webpack-plugin

rdoc react-doc webpack-plugin webpack3 webpack4

Last synced: 18 days ago
JSON representation

Copy Markdown in the picture resources.

Awesome Lists containing this project

README

        

Copy Markdown Image Webpack Plugin
---

Install the plugin via NPM:

```bash
npm i copy-markdown-image-webpack-plugin --save
```

**webpack.config.js**

```js
module.exports = {
entry: './src/index.js',
plugins: [
new CopyMarkdownImageWebpackPlugin({
dir: ['path/to/dir','path/to/dir2'],
toDir: 'path/to/dist',
}),
]
}
```