Ожидаемое поведение
npm run build
должен создать рабочую связку dist
, которую я могу обслуживать на данной машине
Текущее поведение
Несмотря на возможность локальной сборки, всякий раз, когда я пытаюсь запустить npm run build
на внешнем ресурсе (например, на виртуальной машине Digital Ocean или на машине Heroku), я получаю сообщение об ошибке ниже.
Журналы отказов
root@nodejs-lazyq-dev:/var/www/html/Vue# npm run build
> vue-material-dashboard-pro@1.0.0 build /var/www/html/Vue
> vue-cli-service build
⠴ Building for production...
ERROR Failed to compile with 1 errors 09:29:00
error in ./src/assets/scss/_material-dashboard.scss
Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js):
ModuleBuildError: Module build failed (from ./node_modules/sass-loader/lib/loader.js):
@import "md/plugins/fullCalendar";
^
File to import not found or unreadable: md/plugins/fullCalendar.
in /var/www/html/Vue/src/assets/scss/_material-dashboard.scss (line 59, column 1)
at runLoaders (/var/www/html/Vue/node_modules/webpack/lib/NormalModule.js:286:20)
at /var/www/html/Vue/node_modules/loader-runner/lib/LoaderRunner.js:364:11
at /var/www/html/Vue/node_modules/loader-runner/lib/LoaderRunner.js:230:18
at context.callback (/var/www/html/Vue/node_modules/loader-runner/lib/LoaderRunner.js:111:13)
at Object.asyncSassJobQueue.push [as callback] (/var/www/html/Vue/node_modules/sass-loader/lib/loader.js:55:13)
at Object.done [as callback] (/var/www/html/Vue/node_modules/neo-async/async.js:7974:18)
at options.error (/var/www/html/Vue/node_modules/node-sass/lib/index.js:294:32)
@ ./src/material-dashboard.js 17:0-48
@ ./src/main.js
@ multi ./src/main.js
ERROR Build failed with errors.
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! vue-material-dashboard-pro@1.0.0 build: `vue-cli-service build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the vue-material-dashboard-pro@1.0.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2018-09-03T09_29_01_030Z-debug.log
Кроме того, я попытался запустить npm rebuild node-sass
, обновил файл material-dashboard.css
, добавив подчеркивание: _material-dashboard.css
, пропустив --production
в npm install --production
, но мне не повезло.
версия nodejs: v8.11.4
Версия npm: v5.6.0
Я пытался решить эту проблему уже несколько часов, но мне не повезло. Я не понимаю, почему это работает локально, но не на другой производственной машине.