mirror of
https://github.com/danbulant/design
synced 2026-05-19 04:08:46 +00:00
fix environment import
This commit is contained in:
parent
f0acc64141
commit
8af0f92df4
2 changed files with 2 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
|||
<script>
|
||||
import { page } from '$app/stores';
|
||||
import { dev } from '$app/env';
|
||||
import { dev } from '$app/environment';
|
||||
import Button from "$lib/components/button.svelte";
|
||||
import HeroPost from "$lib/components/heroPost.svelte";
|
||||
import Post from "$lib/components/post.svelte";
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
import Navbar from "$lib/components/navbar.svelte";
|
||||
import PageTransition from "$lib/components/pageTransition.svelte";
|
||||
import "virtual:windi.css";
|
||||
import { browser, dev } from "$app/env";
|
||||
import { browser, dev } from "$app/environment";
|
||||
import * as Sentry from '@sentry/browser';
|
||||
import { apm } from "$lib/apm";
|
||||
import { page } from "$app/stores";
|
||||
|
|
|
|||
Loading…
Reference in a new issue