Sassローダーエラー:APIスキーマに一致しない無効なオプションオブジェクト


17

フレームワークVuetifyJS(v2.0.19)でVueJSを使用しています。npm run serveを実行した後、このエラーが発生します:

Sass Loaderは、APIスキーマと一致しないオプションオブジェクトを使用して初期化されました。

私が試したこと:node_modulesフォルダーを削除し、すべてのnpmパッケージとnode.jsを最新の安定したバージョンに再インストール/更新しました。

完全なエラーメッセージ:

 error  in ./node_modules/vuetify/src/components/VRangeSlider/VRangeSlider.sass

Module build failed (from ./node_modules/sass-loader/dist/cjs.js):
ValidationError: Invalid options object. Sass Loader has been initialised using an options object that does not match the API schema.
 - options has an unknown property 'indentedSyntax'. These properties are valid:
   object { implementation?, sassOptions?, prependData?, sourceMap?, webpackImporter? }
    at validate (/home/do/Desktop/A/Projects/Ral/AppCLI3/node_modules/sass-loader/node_modules/schema-utils/dist/validate.js:50:11)
    at Object.loader (/home/do/Desktop/A/Projects/Ral/AppCLI3/node_modules/sass-loader/dist/index.js:36:28)

 @ ./node_modules/vuetify/src/components/VRangeSlider/VRangeSlider.sass 4:14-208 14:3-18:5 15:22-216
 @ ./node_modules/vuetify/lib/components/VRangeSlider/VRangeSlider.js
 @ ./node_modules/vuetify/lib/components/VRangeSlider/index.js
 @ ./node_modules/vuetify/lib/components/index.js
 @ ./node_modules/vuetify/lib/index.js
 @ ./src/main.js
 @ multi (webpack)-dev-server/client?http://192.168.2.115:8080/sockjs-node (webpack)/hot/dev-server.js ./src/main.js

 error  in ./node_modules/vuetify/src/styles/main.sass

私のpackage.json:

  {
  "name": "app",
  "version": "0.1.0",
  "private": false,
  "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
  },
  "dependencies": {
    "core-js": "^3.2.1",
    "fibers": "^4.0.1",
    "firebase": "^7.0.0",
    "material-icons": "^0.3.1",
    "register-service-worker": "^1.6.2",
    "vue": "^2.6.10",
    "vue-flickity": "^1.2.1",
    "vue-router": "^3.1.3",
    "vuetify": "^2.0.19",
    "vuex": "^3.1.1"
  },
  "devDependencies": {
    "@mdi/font": "^4.4.95",
    "@vue/cli-plugin-babel": "^3.11.0",
    "@vue/cli-plugin-eslint": "^3.11.0",
    "@vue/cli-plugin-pwa": "^3.11.0",
    "@vue/cli-service": "^3.11.0",
    "@vue/eslint-config-prettier": "^5.0.0",
    "babel-eslint": "^10.0.3",
    "eslint": "^6.5.1",
    "eslint-plugin-prettier": "^3.1.1",
    "eslint-plugin-vue": "^5.2.3",
    "material-design-icons-iconfont": "^5.0.1",
    "node-sass": "^4.12.0",
    "prettier": "1.18.2",
    "sass-loader": "^8.0.0",
    "stylus": "^0.54.7",
    "stylus-loader": "^3.0.2",
    "uglifyjs-webpack-plugin": "^2.2.0",
    "vue-cli-plugin-vuetify": "^0.6.3",
    "vue-loader": "^15.7.1",
    "vue-template-compiler": "^2.6.10",
    "vuetify-loader": "^1.3.0",
    "webpack": "^4.41.0",
    "webpack-cli": "^3.3.9"
  },
  "eslintConfig": {
    "root": true,
    "env": {
      "node": true
    },
    "extends": [
      "plugin:vue/essential",
      "@vue/prettier"
    ],
    "rules": {
      "no-console": "off"
    },
    "parserOptions": {
      "parser": "babel-eslint"
    }
  },
  "postcss": {
    "plugins": {
      "autoprefixer": {}
    }
  },
  "browserslist": [
    "> 1%",
    "last 2 versions"
  ]
}

この問題を修正する方法は?

回答:


22

ここのような同じ問題のようです:https//github.com/JeffreyWay/laravel-mix/issues/2206

解決策は

npm uninstall --save-dev sass-loader
npm install --save-dev sass-loader@7.1.0

1
ダウングレードは、最もエレガントなアプローチのように私には決して思われませんでしたが、それが私のためにトリックをした唯一のものです。stackoverflow.com/users/5302733/…による以下の回答は、しかし、完全ではありますが、同じエラーが発生しました。
crocodile2u

これも私にとってはうまくいきました。
Hassan Dad Khan

6

使用している場合はvue-cli 4、このエラーを避けるために、あなたはの設定を変更する必要がsass-loadervue.config.jsエラーが修正されることの後に、以下の例のように。

const path = require('path');

module.exports = {
  chainWebpack(config) {
    config
      .entry('app')
      .clear()
      .add('./src/core/main.js')
      .end();
    config.resolve.alias
      .set('~', path.join(__dirname, './src'))
      .set('@', path.join(__dirname, './src/core'))
      .set('#', path.join(__dirname, './src/modules'))
  },
  css: {
    loaderOptions: {
      sass: {
        sassOptions: {
          includePaths: [
            path.resolve(__dirname, 'src/core/')
          ],
          indentedSyntax: true,
        },
        prependData: '@import "~@/assets/sass/main.scss"',
      },
    },
  },
  assetsDir: '@/assets/',
}

独自の構成を指定することを忘れないでください。sass-loaderリポジトリの設定をチェックアウトしてください。

あなたが使用している場合vue cli 3、それはで動作sass-loader v7していないv8、あなたが使用している場合vue cli 3sass-loader v7、以前の設定がまだ動作します。

幸運とよろしく。


私の問題を解決しました。ありがとう。
Firmino Changani

3

indentedSyntaxの一部ですsassOptions

sassOptions: {  indentedSyntax: true  }

例えば:

{
    loader: 'sass-loader',
    options: {
        sassOptions: {
            indentedSyntax: true
        }
    }
}

だから-それを反映するようにWebpack設定を変更します。


1
実行できず、新しいwebpack.LoaderOptionsPlugin({を使用するためにCLI内でエラーを受け取りました。ロードオプションが古いためです。vue.config.js(Vue CLI 3)を使用してwebpackを構成しています。いくつかの詳細を投稿してください。
トム・

1
アプリをどのように作成しましたか(テンプレートを使用したinit init、vue create)。また、そのvue.config.jsを投稿します
madflow

1

私の場合は私が実行したときに本当のエラーは、端末上でemmittedなった後downgrage SASS-ローダーに持っていたng serveことwhould、vue-cli-service私はさらに掘るだろう、それはSASS-ローダーのV8での問題だと思うあなたのケースで

それまでの間、これは役立つ可能性があります:package.jsonで、sass-loaderを編集して、 "sass-loader": "7.0.1",

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.