Issue starting a vanilla js build with vite

Using WSL terminal and I'm trying to start a project using vite, keep encountering the below error..
Error: EPERM: operation not permitted, mkdir 'C:\Windows\restaurant-app'
    at Object.mkdirSync (node:fs:1395:3)
    at Zr (file:///C:/Users/User/AppData/Local/npm-cache/_npx/1415fee72ff6294b/node_modules/create-vite/dist/index.mjs:48:7572)
    at process.processTicksAndRejections (node:internal/process/task_queues:95:5) {
  errno: -4048,
  syscall: 'mkdir',
  code: 'EPERM',
  path: 'C:\\Windows\\restaurant-app'


process I tried is below:
npm create vite@latest restaurant-app
Was this page helpful?