找不到 nebular 的 np-install
Unable to find the np-install for nebular
我收到这个编译器错误。有人可以告诉我我需要安装哪个星云模块来解决这个问题吗?
Failed to compile.
./src/styles.scss (./node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!
./node_modules/postcss-loader/src??embedded!./node_modules/sass-loader/lib/loader.js??ref--14-3!./src/styles.scss)
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
@include nb-install() { ^ No mixin named nb-install in /Users/denisputnam/git/nb-niche-app/src/styles.scss (line 7, column 10)
尝试在 angular.json
的样式数组中添加 "node_modules/@nebular/theme/styles/prebuilt/corporate.scss"
我建议遵循有关此 https://akveo.github.io/nebular/docs/guides/enable-theme-system#basic-setup 的官方文档。在最简单的配置中,您唯一需要做的就是将一个 css 文件添加到您的 angular.json
:
"styles": [
"../node_modules/@nebular/theme/styles/prebuilt/corporate.css",
],
如果您需要更多灵活性(例如能够更改主题 SCSS 变量)- 请按照此处的 Normal
设置指南 https://akveo.github.io/nebular/docs/guides/enable-theme-system#normal-setup。
但是很难说得更多,因为问题描述没有提供很多关于您要实现的目标的详细信息。
我收到这个编译器错误。有人可以告诉我我需要安装哪个星云模块来解决这个问题吗?
Failed to compile.
./src/styles.scss (./node_modules/@angular-devkit/build-angular/src/angular-cli-files/plugins/raw-css-loader.js!
./node_modules/postcss-loader/src??embedded!./node_modules/sass-loader/lib/loader.js??ref--14-3!./src/styles.scss)
Module build failed (from ./node_modules/sass-loader/lib/loader.js):
@include nb-install() { ^ No mixin named nb-install in /Users/denisputnam/git/nb-niche-app/src/styles.scss (line 7, column 10)
尝试在 angular.json
的样式数组中添加"node_modules/@nebular/theme/styles/prebuilt/corporate.scss"
我建议遵循有关此 https://akveo.github.io/nebular/docs/guides/enable-theme-system#basic-setup 的官方文档。在最简单的配置中,您唯一需要做的就是将一个 css 文件添加到您的 angular.json
:
"styles": [
"../node_modules/@nebular/theme/styles/prebuilt/corporate.css",
],
如果您需要更多灵活性(例如能够更改主题 SCSS 变量)- 请按照此处的 Normal
设置指南 https://akveo.github.io/nebular/docs/guides/enable-theme-system#normal-setup。
但是很难说得更多,因为问题描述没有提供很多关于您要实现的目标的详细信息。