We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfa9865 commit edab4c6Copy full SHA for edab4c6
index.html
@@ -16,6 +16,11 @@
16
<div id="app"></div>
17
<script>window.$docsify = { name: 'SQL.js', repo: 'https://github.com/sql-js/sql.js/' }</script>
18
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
19
+ <script>
20
+ let url = new URL(window.location);
21
+ url.pathname = url.pathname.replace(/\/index.html$/, '/');
22
+ if (window.location.toString() !== url.toString()) window.location = url;
23
+ </script>
24
</body>
25
26
</html>
0 commit comments