You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: packages/plugin-legacy/README.md
+10-4
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ By default, this plugin will:
8
8
9
9
- Generate a polyfill chunk including SystemJS runtime, and any necessary polyfills determined by specified browser targets and **actual usage** in the bundle.
10
10
11
-
- Inject `<script nomodule>` tags into generated HTML to conditionally load the polyfills and legacy bundle only in browsers without native ESM support.
11
+
- Inject `<script nomodule>` tags into generated HTML to conditionally load the polyfills and legacy bundle only in browsers without widely-available features support.
12
12
13
13
- Inject the `import.meta.env.LEGACY` env variable, which will only be `true` in the legacy production build, and `false` in all other cases.
14
14
@@ -117,12 +117,18 @@ npm add -D terser
117
117
118
118
Defaults to `false`. Enabling this option will exclude `systemjs/dist/s.min.js` inside polyfills-legacy chunk.
119
119
120
-
## Dynamic Import
120
+
## Browsers that supports ESM but does not support widely-available features
121
121
122
-
The legacy plugin offers a way to use native `import()`in the modern build while falling back to the legacy build in browsers with native ESM but without dynamic import support (e.g. Legacy Edge). This feature works by injecting a runtime check and loading the legacy bundle with SystemJs runtime if needed. There are the following drawbacks:
122
+
The legacy plugin offers a way to use widely-available features natively in the modern build, while falling back to the legacy build in browsers with native ESM but without those features supported (e.g. Legacy Edge). This feature works by injecting a runtime check and loading the legacy bundle with SystemJs runtime if needed. There are the following drawbacks:
123
123
124
124
- Modern bundle is downloaded in all ESM browsers
125
-
- Modern bundle throws `SyntaxError` in browsers without dynamic import
125
+
- Modern bundle throws `SyntaxError` in browsers without those features support
126
+
127
+
The following syntax are considered as widely-available:
constdynamicFallbackInlineCode=`!function(){if(window.${detectModernBrowserVarName})return;console.warn("vite: loading legacy build because dynamic import or import.meta.url is unsupported, syntax error above should be ignored");var e=document.getElementById("${legacyPolyfillId}"),n=document.createElement("script");n.src=e.src,n.onload=function(){${systemJSInlineCode}},document.body.appendChild(n)}();`
117
-
118
-
constforceDynamicImportUsage=`export function __vite_legacy_guard(){import('data:text/javascript,')};`
exportconstdynamicFallbackInlineCode=`!function(){if(window.${detectModernBrowserVarName})return;console.warn("vite: loading legacy chunks, syntax error above and the same error below should be ignored");var e=document.getElementById("${legacyPolyfillId}"),n=document.createElement("script");n.src=e.src,n.onload=function(){${systemJSInlineCode}},document.body.appendChild(n)}();`
14
+
15
+
exportconstmodernChunkLegacyGuard=`export function __vite_legacy_guard(){${detectModernBrowserDetector}};`
0 commit comments