- Svelte 5 frontend with Catppuccin Mocha theme, 2 project cards - Electrobun v1.16.0 with bundleWGPU: true (Dawn on Linux x64) - WebKitGTK webview + WGPU surface coexistence confirmed - CPU: 6.5% idle (CSS animation + WebKitGTK overhead) - Port 9760 for dev server (project convention)
9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
import "./app.css";
|
|
import App from "./App.svelte";
|
|
import { mount } from "svelte";
|
|
|
|
const app = mount(App, {
|
|
target: document.getElementById("app")!,
|
|
});
|
|
|
|
export default app;
|