import { mount } from 'svelte' import './app.css' import App from './App.svelte' // Import and configure guestbook components import { configureGuestbook } from '../../lib/register'; // Configure with demo OAuth settings configureGuestbook({ oauth: { clientId: import.meta.env.VITE_OAUTH_CLIENT_ID, redirectUri: import.meta.env.VITE_OAUTH_REDIRECT_URL, scope: import.meta.env.VITE_OAUTH_SCOPE, }, }); const app = mount(App, { target: document.getElementById('app')!, }) export default app