Skip to content

Commit

Permalink
fix: icon displays and doesn't error
Browse files Browse the repository at this point in the history
  • Loading branch information
azaleacolburn committed Dec 12, 2024
1 parent f6b476d commit d67d64f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="flamingChicken.png" />
<link rel="icon" href="./flamingChicken.png" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
Expand Down
7 changes: 6 additions & 1 deletion vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ import { defineConfig } from 'vite';
import webSocketServer from './ws.js';

export default defineConfig({
plugins: [sveltekit(), webSocketServer]
plugins: [sveltekit(), webSocketServer],
server: {
fs: {
allow: ['./']
}
}
});

0 comments on commit d67d64f

Please sign in to comment.