vxui-re 1.0.5 → 1.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2 @@
1
+ wrangler.json
2
+ .dev.vars
package/dist/404.html ADDED
@@ -0,0 +1,18 @@
1
+ <!doctype html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8" />
5
+ <title>VXUI React</title>
6
+ <script>
7
+ // GitHub Pages SPA redirect hack.
8
+ // Redirects all 404s back to index.html, preserving the full path as a
9
+ // query-string so the SPA router can restore it client-side.
10
+ var l = window.location;
11
+ l.replace(
12
+ l.protocol + '//' + l.host + '/?p=' +
13
+ encodeURIComponent(l.pathname + l.search) + l.hash
14
+ );
15
+ </script>
16
+ </head>
17
+ <body></body>
18
+ </html>