From 60557b6cebb879830c5b0cdae6d2e25734c01120 Mon Sep 17 00:00:00 2001 From: Julien Ripouteau Date: Fri, 5 Apr 2024 09:02:11 +0200 Subject: [PATCH] chore: update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7691f4a..c30c9f5 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ In the case of an HTTP server, you would typically dynamic import your controlle Also note that you must use `import.meta.hot?.boundary` when importing the module. This is a special [import](https://nodejs.org/api/esm.html#import-attributes) attributes that allows to create what we call an [HMR boundary](#boundary). > [!TIP] -> If using `import.meta.hot?.boundary` is not of your taste, you can also hardcode the list of files that you want to be hot reloadable in the `hot.init` options using glob patterns in the `boundaries` option. +> If using `import.meta.hot?.boundary` is not of your taste, you can also hardcode the list of files that you want to be hot reloadable using glob patterns in the [`boundaries` options of `hot.init`](#boundaries) Example :