From e21dd238d50076775e46ea8f6c8f306f286dc7bf Mon Sep 17 00:00:00 2001 From: adv0r Date: Wed, 3 Jun 2026 10:52:50 +0200 Subject: [PATCH] docs: fix typo in typescript.mdx --- src/content/guides/typescript.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/guides/typescript.mdx b/src/content/guides/typescript.mdx index cd2d1d9efde5..8d57de9bddcb 100644 --- a/src/content/guides/typescript.mdx +++ b/src/content/guides/typescript.mdx @@ -114,7 +114,7 @@ const config: webpack.Configuration = { export default config; ``` -> For further refrence on how to write configuration in [Typescript file](https://webpack.js.org/configuration/configuration-languages/#typescript) +> For further reference on how to write configuration in [Typescript file](https://webpack.js.org/configuration/configuration-languages/#typescript) This will direct webpack to _enter_ through `./index.ts`, _load_ all `.ts` and `.tsx` files through the `ts-loader`, and _output_ a `bundle.js` file in our current directory.