Error: Cannot find module 'ejs'

后端 未结 29 2041
南方客
南方客 2020-12-13 05:33

Here is my complete error:

Error: Cannot find module \'ejs\'
    at Function._resolveFilename (module.js:317:11)
    at Function._load (module.js:262:25)
            


        
29条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-13 05:55

    In my case, I just uninstall then install ejs again.

    npm uninstall ejs
    

    then

    npm install ejs
    

提交回复
热议问题