fix: use svelte 5 mount api

This commit is contained in:
Jack O'Neill
2026-04-05 10:47:28 +02:00
parent 6c6f4022a0
commit 4bf1c1fe60
4 changed files with 4 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -8,7 +8,7 @@
name="description" name="description"
content="AMCS is a memory server that captures, links, and retrieves structured project thoughts for AI assistants using semantic search, summaries, and MCP tools." content="AMCS is a memory server that captures, links, and retrieves structured project thoughts for AI assistants using semantic search, summaries, and MCP tools."
/> />
<script type="module" crossorigin src="/assets/index-CIozj4p7.js"></script> <script type="module" crossorigin src="/assets/index-CAayb6ka.js"></script>
<link rel="stylesheet" crossorigin href="/assets/index-BDhMN0_9.css"> <link rel="stylesheet" crossorigin href="/assets/index-BDhMN0_9.css">
</head> </head>
<body class="bg-slate-950"> <body class="bg-slate-950">

View File

@@ -1,7 +1,8 @@
import './app.css'; import './app.css';
import App from './App.svelte'; import App from './App.svelte';
import { mount } from 'svelte';
const app = new App({ const app = mount(App, {
target: document.getElementById('app')! target: document.getElementById('app')!
}); });