2017-10-25 8 views
1

gescheitert Kompilieren Während Vermögenswerte in Laravel Kompilieren wirft Fehler:Assets in Laravel 5.4

ERROR Failed to compile with 2 errors          
error in ./resources/assets/sass/app.scss 
Module build failed: Error: Missing binding /media/xxx/workspace/Projects/Laravel-blog/node_modules/node-sass/vendor/linux-ia32-57/binding.node 
Node Sass could not find a binding for your current environment: Linux 32-bit with Node.js 8.x 

Found bindings for the following environments: 
    - Linux 32-bit with Node.js 7.x 

package.json

{ 
    "private": true, 
    "scripts": { 
    "dev": "NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 
    "watch": "NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js", 
    "hot": "NODE_ENV=development webpack-dev-server --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js", 
    "production": "NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js" 
    }, 
    "devDependencies": { 
    "axios": "^0.15.3", 
    "bootstrap-sass": "^3.3.7", 
    "cross-env": "^3.2.4", 
    "jquery": "^3.1.1", 
    "laravel-mix": "^1.0", 
    "lodash": "^4.17.4", 
    "vue": "^2.5.2", 
    "webpack": "^3.8.1" 
    }, 
    "dependencies": { 
    "bootstrap": "^3.3.7" 
    } 
} 

ich glaube, das Problem ist mit Umwelt-Bindung als die Fehlermeldung zeigt.

Und noch etwas zu erwähnen, wenn ich nur js Datei kompilieren dann ist es ein erfolgreicher Build. Und ich habe versucht npm rebuild node-sass aber keine Hilfe.
Wie kann ich den Fehler beheben?

Maschine: Ubuntu 16.04
npm -v: 5.5.1
Knoten -v: v8.6.0

Antwort

0

Die Bindung für Node-Version ist auf der Suche 7, während Sie Version haben 8.

die Try folgender Befehl:

npm rebuild node-sass 
+0

ja ich habe versucht, sowie 'npm node-sass --force' wieder aufzubauen und es nicht hilft –