From e5576c32c08214766c8bac5458dfcad8301d3a1a Mon Sep 17 00:00:00 2001 From: Titouan Mathis Date: Mon, 11 Jan 2021 09:46:19 +0100 Subject: [PATCH] fix(plugin-html): typo in the Safari 10 nomodule snippet (#1483) --- packages/plugin-legacy/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/plugin-legacy/index.js b/packages/plugin-legacy/index.js index 1244856238cff8..47d4a2a7f6bf5f 100644 --- a/packages/plugin-legacy/index.js +++ b/packages/plugin-legacy/index.js @@ -267,7 +267,7 @@ function viteLegacyPlugin(options = {}) { // 2. inject Safari 10 nomodule fix tags.push({ tag: 'script', - attrs: { nomdoule: true }, + attrs: { nomodule: true }, children: safari10NoModuleFix, injectTo: 'body' })