Permalink
Fixes: #15278 > Bug report > When using next dev with emacs, as you develop, emacs creates symbolic link files starting with .# as lock files. Next.js seems to attempt to load these but fails, spewing out errors constantly. Prevents dev server from crashing when emacs creates lockfiles tested with: - GNU Emacs 27.1 - OSX 11.1 - Node v15.4.0
| # build output | |
| dist | |
| .next | |
| # dependencies | |
| node_modules | |
| package-lock.json | |
| yarn.lock | |
| !/yarn.lock | |
| test/node_modules | |
| # logs & pids | |
| *.log | |
| pids | |
| # coverage | |
| .nyc_output | |
| coverage | |
| # test output | |
| test/**/out* | |
| test/**/next-env.d.ts | |
| .DS_Store | |
| /e2e-tests | |
| # Editors | |
| **/.idea | |
| **/.#* | |
| # examples | |
| examples/**/out | |
| examples/**/.env*.local | |
| pr-stats.md | |
| test-timings.json | |
| # Vercel | |
| .vercel | |
| .now |