Home > Blockchain >  ValidationError: Invalid options object. CSS Loader has been initialized using an options object tha
ValidationError: Invalid options object. CSS Loader has been initialized using an options object tha

Time:11-23

Sumemry

I created Nuxt.js project by yarn create nuxt-app with SPA mode.
However, after installing Storybook, yarn dev retuens error and cannot start demo page.

ERROR  Failed to compile with 1 errors                                                       friendly-errors 17:38:56

ERROR  in ./layouts/error.vue?vue&type=style&index=0&id=d5ea9138&scoped=true&lang=css&       friendly-errors 17:38:56

Module build failed (from ./node_modules/css-loader/dist/cjs.js):                             friendly-errors 17:38:56
ValidationError: Invalid options object. CSS Loader has been initialized using an options object that does not match the API schema.
 - options.modules has an unknown property 'compileType'. These properties are valid:
   object { auto?, mode?, exportGlobals?, localIdentName?, localIdentRegExp?, context?, hashPrefix?, getLocalIdent? }
    at validate (/home/jpskgc/ghq/github.com/jpskgc/vue-nuxt-vuetify-sass-storybook/node_modules/css-loader/node_modules/schema-utils/dist/validate.js:98:11)
    at Object.loader (/home/jpskgc/ghq/github.com/jpskgc/vue-nuxt-vuetify-sass-storybook/node_modules/css-loader/dist/index.js:36:28)
                                                                                              friendly-errors 17:38:56
 @ ./node_modules/vue-style-loader??ref--3-oneOf-1-0!./node_modules/css-loader/dist/cjs.js??ref--3-oneOf-1-1!./node_modules/@nuxt/webpack/node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??ref--3-oneOf-1-2!./node_modules/@nuxt/webpack/node_modules/vue-loader/lib??vue-loader-options!./layouts/error.vue?vue&type=style&index=0&id=d5ea9138&scoped=true&lang=css& 4:14-385 15:3-20:5 16:22-393
 @ ./layouts/error.vue?vue&type=style&index=0&id=d5ea9138&scoped=true&lang=css&
 @ ./layouts/error.vue
 @ ./.nuxt/index.js
 @ ./.nuxt/client.js
 @ multi ./node_modules/eventsource-polyfill/dist/browserify-eventsource.js (webpack)-hot-middleware/client.js?reload=true&timeout=30000&ansiColors=&overlayStyles=&path=/__webpack_hmr/client&name=client ./.nuxt/client.js

I want to know how to resolve this error and success to run yarn dev command.

some code

Here is the repo. Please check.
https://github.com/jpskgc/vue-nuxt-vuetify-sass-storybook

Environment

Ubuntu20.04

CodePudding user response:

I resolved this issue by adding following dev dependencies.

yarn add --dev css-loader@^5.0.0 postcss@^8.1.10 postcss-import@^13.0.0 postcss-loader@^4.1.0 postcss-url@^10.1.1
  • Related