solid-start icon indicating copy to clipboard operation
solid-start copied to clipboard

Vite config server port ignored

Open tomexx opened this issue 3 years ago • 0 comments

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

tomexx avatar Nov 18 '22 00:11 tomexx