More Log Information when Vite Server Runs
Using the -d
option with the Vite command in the npm script to have
more verbose output for debugging.
// ...
"scripts": {
"dev": "vite -d",
"build": "vite build",
"preview": "vite preview"
}
// ...