Skip to content

Commit

Permalink
refactor: removing possibly extraneous code
Browse files Browse the repository at this point in the history
  • Loading branch information
knownotunknown committed Nov 2, 2024
1 parent e3382a8 commit cdfe390
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 12 deletions.
1 change: 0 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,6 @@
<body data-theme="dark" class="overflow-x-hidden bg-background text-on-background">
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>

<script src="/src/index.tsx" type="module"></script>
</body>
</html>
11 changes: 0 additions & 11 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,17 +10,6 @@ export default defineConfig({
solid({
ssr: false,
}),
{
name: 'log-server-start',
configureServer(server) {
server.httpServer?.once('listening', () => {
const address = server.httpServer?.address()
if (typeof address === 'object' && address !== null) {
console.log(`Server listening on port ${address.port}`)
}
})
},
},
],
server: {
port: 3000,
Expand Down

0 comments on commit cdfe390

Please sign in to comment.