From 1727c206e949371dc7482ad85fa885839b107da7 Mon Sep 17 00:00:00 2001 From: popsiclelmlm Date: Mon, 18 May 2026 00:51:37 +0800 Subject: [PATCH] docs: update import maps reference --- src/guide/scaling-up/ssr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/scaling-up/ssr.md b/src/guide/scaling-up/ssr.md index 66e507c896..cbc9886552 100644 --- a/src/guide/scaling-up/ssr.md +++ b/src/guide/scaling-up/ssr.md @@ -196,7 +196,7 @@ In addition, in order to load the client files in the browser, we also need to: 1. Serve client files by adding `server.use(express.static('.'))` in `server.js`. 2. Load the client entry by adding `` to the HTML shell. -3. Support usage like `import * from 'vue'` in the browser by adding an [Import Map](https://github.com/WICG/import-maps) to the HTML shell. +3. Support usage like `import * from 'vue'` in the browser by adding an [Import Map](https://html.spec.whatwg.org/multipage/webappapis.html#import-maps) to the HTML shell. [Try the completed example on StackBlitz](https://stackblitz.com/fork/vue-ssr-example?file=index.js). The button is now interactive!