We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c89ea12 commit a6516e6Copy full SHA for a6516e6
docs/index.md
@@ -6,8 +6,8 @@ sidebar: false
6
<script setup>
7
import { onMounted } from 'vue';
8
onMounted(() => {
9
- window && window.addEventListener('DOMContentLoaded', () => {
+ if (typeof window !== 'undefined') {
10
window.location.href = '/installation/';
11
- });
+ }
12
});
13
</script>
0 commit comments