1.0.0 • Published 4 years ago
render-md-loader v1.0.0
render-md-loader
The render-md-loader interprets @import and url() like import/require() and will resolve them.
Getting Started
To begin, you'll need to install render-md-loader:
npm install --save-dev render-md-loaderThen add the plugin to your webpack config. For example:
webpack.config.js
module.exports = {
module: {
rules: [
{
test: /\.md$/i,
use: ['render-md-loader'],
},
],
},
};1.0.0
4 years ago