Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Internal server error: Preprocessor dependency "sass" not found. Did you install it?

Tags:

npm

vite

I created a new VUE 3 and typescript application using vite. I later installed primevue and primeflex. When I run npm run dev, I get the error seen below:

enter image description here

How do I fix this? My repo, if that will shed light.

like image 815
OLA Avatar asked Sep 05 '25 03:09

OLA


1 Answers

Install the sass package.

npm install --save-dev sass
like image 150
Fabian Wagner - a6a2f5842 Avatar answered Sep 09 '25 17:09

Fabian Wagner - a6a2f5842