Hi all. I'm just getting started with a fresh project, which I created using the default template. I added a bit of CSS and a links function to my root.tsx, but then noticed that my updates didn't seem to be showing up on my dev server. I'm running the server via npm run dev, and I haven't changed any configuration.
One other thing that I noticed: the dev server is very slow to start! I'm not sure if this is related. Here's my system info:
$ uname -a
Linux DESKTOP-K5C7VS9 5.15.90.1-microsoft-standard-WSL2 #1 SMP Fri Jan 27 02:56:13 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux
Here are the contents of my package.json file.
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev",
"start": "remix-serve build",
"typecheck": "tsc"
},
"dependencies": {
"@remix-run/node": "^1.14.3",
"@remix-run/react": "^1.14.3",
"@remix-run/serve": "^1.14.3",
"isbot": "^3.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.14.3",
"@remix-run/eslint-config": "^1.14.3",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"eslint": "^8.27.0",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}
I'm running current node stable: $ node --version v19.8.1
Any ideas how I might debug this issue?