Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to use with Sveltekit? #71

Open
geoidesic opened this issue Sep 1, 2023 · 1 comment
Open

How to use with Sveltekit? #71

geoidesic opened this issue Sep 1, 2023 · 1 comment

Comments

@geoidesic
Copy link

The example shows

import App from './App.svelte';
...
<Notifications>
  <App />
</Notifications>

But that's not compatible with Sveltekit, I don't think?

@louchebem06
Copy link

For use in SvelteKit, it must be placed in the first layout as shown below:

├───src
│   └── routes
│       ├── +layout.svelte
│       └── +page.svelte
/* +layout.svelte */
<script lang="ts">
	import Notifications from 'svelte-notifications';
</script>

<Notifications>
	<slot />
</Notifications>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants