diff --git a/webpack-plugin/README.md b/webpack-plugin/README.md index 3dbc5d65..b457178c 100644 --- a/webpack-plugin/README.md +++ b/webpack-plugin/README.md @@ -30,7 +30,7 @@ module.exports = { }, { test: /\.ttf$/, - use: ['file-loader'] + type: 'asset/resource' } ] }, @@ -38,6 +38,15 @@ module.exports = { }; ``` +If using Webpack 4 or lower, it is necessary to use the file-loader instead of Asset Modules like the code below: + +```js +{ + test: /\.ttf$/, + use: ['file-loader'] +} +``` + - `index.js`: ```js