InvokeAI/invokeai/frontend/web/index.html

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
657 B
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
2024-01-03 21:20:57 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Expires" content="0">
<title>Invoke - Community Edition</title>
2024-04-12 02:45:28 +00:00
<link id="invoke-favicon" rel="icon" type="icon" href="assets/images/invoke-favicon.svg" />
2024-01-03 21:20:57 +00:00
<style>
html,
body {
padding: 0;
margin: 0;
}
</style>
</head>
<body dir="ltr">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
2024-04-12 02:45:28 +00:00
</html>