17 lines
413 B
HTML
17 lines
413 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Fabric Desktop</title>
|
|
<style>
|
|
body { font-family: system-ui, sans-serif; margin: 40px; }
|
|
code { background:#f3f3f3; padding:2px 6px; border-radius:4px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Fabric Desktop</h1>
|
|
<p>Frontend dev server not set.</p>
|
|
<p>Run with: <code>npm run start:dev</code></p>
|
|
</body>
|
|
</html>
|