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 8f75a8c commit 6f0b63aCopy full SHA for 6f0b63a
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