[Solved]* !!vue-style-loader!css-loader?{"sourceMap":true}!../../../node_modules/vue-loader/lib/style-c

Project scene:

Today, when I was writing the css style under Vue-style, I suddenly reported this bird error to me. After searching for a long time, I saw where my css style was wrong.
Insert picture description here


Problem Description:

 ERROR  Failed to compile with 1 errors                                                                1:36:12F10: PM
This dependency was not found:

* !!vue-style-loader!css-loader?{
    
    "sourceMap":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{
    
    "vue":true,"id":"data-v-805bdf94","scoped":true,"hasInlineConfig":false}!stylus-loader?{
    
    "sourceMap":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./UserAdd.vue in ./src/pages/userManages/UserAdd.vue

To install it, you can run: npm install --save !!vue-style-loader!css-loader?{
    
    "sourceMap":true}!../../../node_modules/vue-loader/lib/style-compiler/index?{
    
    "vue":true,"id":"data-v-805bdf94","scoped":true,"hasInlineConfig":false}!stylus-loader?{
    
    "sourceMap":true}!../../../node_modules/vue-loader/lib/selector?type=styles&index=0!./UserAdd.vue
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys'
Error from chokidar (C:\): Error: EBUSY: resource busy or locked, lstat 'C:\swapfile.sys'
        }

Cause Analysis:

Say what

-Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys’

The translation is:

Error: EBUSY: resource busy or locked, lstat'C:\pagefile.sys'
error: EBUSY: resource is busy or locked, lstat'C:\virtual memory' is plain
that there is an error in css import format.


solution:

Change lang="stylus" in style to lang="css" to solve it.

Insert picture description here

No matter what, you can achieve success as long as you have unlimited enthusiasm for it. - Schwab

Guess you like

Origin blog.csdn.net/qq_43055855/article/details/109114768