Сборка углового проекта с Не удается получить / ошибка

#css #node.js #angular #webpack #angular-cli

Вопрос:

Я попытался запустить свой угловой в IntelliJ и получил эту ошибку. Когда я открываю браузер на локальном хосте, он показывает Cannot GET /

Шаги, которые я предпринял, были:

  • Откройте проект
  • установка npm-g @angular/cli@последняя версия
  • gradlew чистая сборка
  • нг служить
 ERROR in ./src/novus-rego-theme/theme.scss (./node_modules/css-loader/dist/cjs.js??ref--13-1!./node_modules/postcss-loader/src??embedded!./node_modules/
sass-loader/dist/cjs.js??ref--13-3!./src/novus-rego-theme/theme.scss)
Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
SassError: Can't find stylesheet to import.
  ╷
1 │ @import 'node_modules/@angular/material/theming';
  │         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  ╵
  C:Userspaul.d1 - PROJECTSsimple-regreg-uisrcnovus-rego-themetheme.scss 1:9  root stylesheet
** Angular Live Development Server is listening on localhost:4200, open your browser on http://localhost:4200/ **
 

У кого-нибудь были такие же проблемы?

Вот мое theme.scss досье:

 @import 'node_modules/@angular/material/theming';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();

// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue.
$app-primary: mat-palette($mat-light-blue, 400);
$app-accent: mat-palette($mat-light-blue, A200, A100, A400);

// The warn palette is optional (defaults to red).
$app-warn: mat-palette($mat-red);

// Create the theme object (a Sass map containing all of the palettes).
$app-theme: mat-light-theme($app-primary, $app-accent, $app-warn);

// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($app-theme);

 

Ответ №1:

Измените @import 'node_modules/@angular/material/theming'; , как показано ниже.

 @import '~@angular/material/theming';
 

Комментарии:

1. Это работает! Теперь я могу открыть свой проект в браузере. Спасибо, приятель. Вы знаете, почему я получаю эту ошибку oauth?

2. [HPM] СООБЩЕНИЕ /oauth/токен -> > локальный хост:8090 [HPM] Произошла ошибка при попытке прокси-запроса /oauth/токена с локального хоста:4200 на локальный хост:8090 (НЕ используется) ( nodejs.org/api/erro rs.html#errors_common_system_errors)

3. Сталкиваетесь ли вы сейчас с этой ошибкой? Это еще один вопрос. Я предлагаю вам опубликовать новый вопрос.

4. Да, это тот же самый проект. Только что понял, что получил эту ошибку. Опубликую новый вопрос.