This commit is contained in:
@@ -63,7 +63,6 @@
|
||||
|
||||
<script>
|
||||
import { onMount } from 'svelte'
|
||||
import { fade } from 'svelte/transition'
|
||||
import { stores } from '@sapper/app'
|
||||
import {
|
||||
apiEndpoints,
|
||||
@@ -109,8 +108,7 @@
|
||||
|
||||
|
||||
onMount(async () => {
|
||||
const gaTracker = await import('utils/AnalyticsTracker')
|
||||
AnalyticsTracker = gaTracker.default
|
||||
await import('utils/AnalyticsTracker').then(module => AnalyticsTracker = module.default)
|
||||
})
|
||||
</script>
|
||||
|
||||
@@ -122,11 +120,7 @@
|
||||
<link rel="canonical" href={`https://${$page.host}${$page.path}`} />
|
||||
</svelte:head>
|
||||
|
||||
<main class="housesof"
|
||||
class:is-transitioning={!$pageReady}
|
||||
in:fade={{ duration: 600 }}
|
||||
out:fade={{ duration: 600 }}
|
||||
>
|
||||
<main class="housesof" class:is-transitioning={!$pageReady}>
|
||||
<slot></slot>
|
||||
</main>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user