solid-start
solid-start copied to clipboard
Vite config server port ignored
Hi all,
I found out that Solid Start ignores configuration from vite.config.ts
I tried to run the app on a different port than 3000:
export default defineConfig({
plugins: [solid()],
server: {
port: 3005,
},
})
I run the dev mode with:
solid-start dev --config vite.config.ts
But the server port from config file is ignored and the app runs on default port 3000