check-realpath-webpack-plugin

js
This is a webpack plugin that check native real path in Windows and MacOS.
Version 1.0.1 License MIT
Keywords
realpathwebpackplugincasepath
<script src=" https://cdn.jsdelivr.net/npm/check-realpath-webpack-plugin@1.0.1/index.min.js "></script>
check-realpath-webpack-plugin
This is a webpack plugin that check native real path in Windows and MacOS.
Installation
npm i check-realpath-webpack-plugin -D
Usage
webpack.config.js
const CheckRealPathPlugin = require('check-realpath-webpack-plugin')
// ...
module.exports = {
// ...
plugins: [
new CheckRealPathPlugin(),
// ...
],
}
Notice
Used with html-webpack-plugin
// ... module.exports = { // ... module: { rules: [ // ... { test: /\.html$/i, loader: require.resolve('html-webpack-plugin/lib/loader'), options: { force: true, } } ] } }
License
MIT