EN
React - npm run dev showing "Network: use --host to expose" (Vite)
1
answers
0
points
Previously, when I run npm run dev
command, it showed something like this:
Local: http://localhost:3000/
Network: http://192...:3000/
Now, there is no Network address but the following information instead:
Network: use --host to expose
I'm using Vite + React + TS. How can I make it work again?
1 answer
0
points
Add the following configuration to the vite.config.ts
file:
server: {
host: true
}
Practical example:
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
export default defineConfig({
plugins: [react()],
server: {
host: true
}
})
0 comments
Add comment