web-dev-qa-db-ja.com

stylePreprocessorOptions angular 8

私は this に従って、Angular 8のstylePreprocessorOptionsを介してインポート可能なscssファイルを追加しますが、それが見つからないというエラーが発生し続けます。入力は評価されます。トリックはとても便利です!

以下は私のangular.jsonです

{
  "$schema": "./node_modules/@angular/cli/lib/config/schema.json",
  "version": 1,
  "newProjectRoot": "projects",
  "projects": {
    "thebearcottages-app": {
      "projectType": "application",
      "schematics": {
        "@schematics/angular:component": {
          "style": "scss",
          "skipTests": true
        },
        "@schematics/angular:class": {
          "skipTests": true
        },
        "@schematics/angular:directive": {
          "skipTests": true
        },
        "@schematics/angular:guard": {
          "skipTests": true
        },
        "@schematics/angular:module": {
          "skipTests": true
        },
        "@schematics/angular:pipe": {
          "skipTests": true
        },
        "@schematics/angular:service": {
          "skipTests": true
        }
      },
      "root": "",
      "sourceRoot": "src",
      "prefix": "app",
      "architect": {
        "build": {
          "builder": "@angular-devkit/build-angular:browser",
          "options": {
            "outputPath": "dist/thebearcottages-app",
            "index": "src/index.html",
            "main": "src/main.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "tsconfig.app.json",
            "aot": false,
            "assets": [
              "src/favicon.ico",
              "src/assets"
            ],
            "styles": [
              "src/styles.scss",
            ],
            "stylePreprocessorOptions": {
              "includePaths": [
                "src/styling/"
              ]
            },
            "scripts": [
              "node_modules/jquery/dist/jquery.min.js"
            ]
          },
          "configurations": {
            "production": {
              "fileReplacements": [
                {
                  "replace": "src/environments/environment.ts",
                  "with": "src/environments/environment.prod.ts"
                }
              ],
              "optimization": true,
              "outputHashing": "all",
              "sourceMap": false,
              "extractCss": true,
              "namedChunks": false,
              "aot": true,
              "extractLicenses": true,
              "vendorChunk": false,
              "buildOptimizer": true,
              "budgets": [
                {
                  "type": "initial",
                  "maximumWarning": "2mb",
                  "maximumError": "5mb"
                }
              ]
            }
          }
        },
        "serve": {
          "builder": "@angular-devkit/build-angular:dev-server",
          "options": {
            "browserTarget": "thebearcottages-app:build"
          },
          "configurations": {
            "production": {
              "browserTarget": "thebearcottages-app:build:production"
            }
          }
        },
        "extract-i18n": {
          "builder": "@angular-devkit/build-angular:extract-i18n",
          "options": {
            "browserTarget": "thebearcottages-app:build"
          }
        },
        "test": {
          "builder": "@angular-devkit/build-angular:karma",
          "options": {
            "main": "src/test.ts",
            "polyfills": "src/polyfills.ts",
            "tsConfig": "tsconfig.spec.json",
            "karmaConfig": "karma.conf.js",
            "assets": [
              "src/favicon.ico",
              "src/assets"
            ],
            "styles": [
              "src/styles.scss"
            ],
            "scripts": [
              "node_modules/jquery/dist/jquery.min.js"
            ]
          }
        },
        "lint": {
          "builder": "@angular-devkit/build-angular:tslint",
          "options": {
            "tsConfig": [
              "tsconfig.app.json",
              "tsconfig.spec.json",
              "e2e/tsconfig.json"
            ],
            "exclude": [
              "**/node_modules/**"
            ]
          }
        },
        "e2e": {
          "builder": "@angular-devkit/build-angular:protractor",
          "options": {
            "protractorConfig": "e2e/protractor.conf.js",
            "devServerTarget": "thebearcottages-app:serve"
          },
          "configurations": {
            "production": {
              "devServerTarget": "thebearcottages-app:serve:production"
            }
          }
        }
      }
    }},
  "defaultProject": "thebearcottages-app"
}

これは私が得ているエラーです:

./src/app/content-component/gallery/gallery.component.scssでのエラーモジュールのビルドに失敗しました(./node_modules/sass-loader/lib/loader.jsから):

@import "グリッド"; ^インポートするスタイルシートが見つかりません。 ╷1│@import "グリッド"; │^^^^^^╵/Users/konstantinurban/Desktop/thebearcottages/src/app/content-component/gallery/gallery.component.scssのstdin 1:9ルートスタイルシート(1行目、9列目)

7
kontenurban

Angular 8.で新しいアプリを起動したときに同じバグが見つかりました。適切に宣言されたインポートであっても、「インポートするスタイルシートが見つかりません。」と表示されます。小さな調査の結果、sass -loader bug https://github.com/webpack-contrib/sass-loader/issues/704 すぐに修正されることを願っていますが、その間に回避策があります:

既存の_mixins.scss your stylePreprocessorOptions/includePathsで、最初のアンダースコアを含むファイル名を使用します

@import '_mixins';

よりきれいではなく、現在はバグが多い

@import 'mixins';
2
mentatxx

この問題を抱えている人が多すぎます。

追加する必要があるようです:

"stylePreprocessorOptions": {
          "includePaths": [

            "// here paths to include"
            "assets/styles",
          ]

それはいくつかの問題を解決するようですが、それでも私がコンパスのインポートを解決しません。

0
damian

接頭辞としてインポートするときにscssを使用する場合は、タイプを指定する必要があることに注意してください。 @import "colors.scss";

0
Dima Shanin