Fix WebUI Not Working

This commit is contained in:
blessedcoolant 2022-10-07 08:09:26 +13:00
parent 6e1328d4c2
commit a53b9a443f
10 changed files with 486 additions and 4 deletions

2
frontend/.gitignore vendored
View File

@ -23,5 +23,3 @@ dist-ssr
*.njsproj *.njsproj
*.sln *.sln
*.sw? *.sw?
dist/*

Binary file not shown.

BIN
frontend/dist/assets/Inter.b9a8e5e2.ttf vendored Normal file

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 116 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 336 KiB

File diff suppressed because one or more lines are too long

483
frontend/dist/assets/index.a8cf9285.js vendored Normal file

File diff suppressed because one or more lines are too long

BIN
frontend/dist/assets/logo.13003d72.png vendored Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View File

@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>InvokeAI - A Stable Diffusion Toolkit</title> <title>InvokeAI - A Stable Diffusion Toolkit</title>
<link rel="shortcut icon" type="icon" href="/assets/favicon.0d253ced.ico" /> <link rel="shortcut icon" type="icon" href="/assets/favicon.0d253ced.ico" />
<script type="module" crossorigin src="/assets/index.94d0d9f3.js"></script> <script type="module" crossorigin src="/assets/index.a8cf9285.js"></script>
<link rel="stylesheet" href="/assets/index.60ca0ee5.css"> <link rel="stylesheet" href="/assets/index.60ca0ee5.css">
</head> </head>

View File

@ -16,8 +16,8 @@ const SeedOptions = () => {
<Seed /> <Seed />
<ShuffleSeed /> <ShuffleSeed />
</Flex> </Flex>
<Perlin />
<Threshold /> <Threshold />
<Perlin />
</Flex> </Flex>
); );
}; };