From 6cfe854f1db7e99701714d2ee762b1729dd6e45f Mon Sep 17 00:00:00 2001 From: szymonrybczak Date: Mon, 19 Feb 2024 11:26:54 +0100 Subject: [PATCH] fix: typo also in `templates/` --- templates/webpack.config.cjs | 2 +- templates/webpack.config.mjs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/webpack.config.cjs b/templates/webpack.config.cjs index 6bea0c74e..74ed6ba1e 100644 --- a/templates/webpack.config.cjs +++ b/templates/webpack.config.cjs @@ -185,7 +185,7 @@ module.exports = (env) => { * This loader handles all static assets (images, video, audio and others), so that you can * use (reference) them inside your application. * - * If you wan to handle specific asset type manually, filter out the extension + * If you want to handle specific asset type manually, filter out the extension * from `ASSET_EXTENSIONS`, for example: * ``` * Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg') diff --git a/templates/webpack.config.mjs b/templates/webpack.config.mjs index 27ec8a366..18313bebc 100644 --- a/templates/webpack.config.mjs +++ b/templates/webpack.config.mjs @@ -187,7 +187,7 @@ export default (env) => { * This loader handles all static assets (images, video, audio and others), so that you can * use (reference) them inside your application. * - * If you wan to handle specific asset type manually, filter out the extension + * If you want to handle specific asset type manually, filter out the extension * from `ASSET_EXTENSIONS`, for example: * ``` * Repack.ASSET_EXTENSIONS.filter((ext) => ext !== 'svg')