Giter VIP home page Giter VIP logo

Comments (6)

timneutkens avatar timneutkens commented on August 24, 2024 6

Fixed in v0.1.0

from next-plugins.

dryleaf avatar dryleaf commented on August 24, 2024 1

Along with the css configurations mentioned here, What if I want to export also the following settings in next.config.js:

module.exports = {
  useFileSystemPublicRoutes: false,
  poweredByHeader: false
}

How can this be achieved?

from next-plugins.

fadiquader avatar fadiquader commented on August 24, 2024

Without typescript!, and i get same Error!

> Failed to build
{ Error: (client) ./styles/style.less
Module build failed: ValidationError: Style Loader Invalid Options

options['importLoaders'] should NOT have additional properties

from next-plugins.

egorovli avatar egorovli commented on August 24, 2024

+1, same here:

 ERROR  Failed to compile with 1 errors                                                                 20:05:16
 error  in ./styles/main.scss

Module build failed: ValidationError: Style Loader Invalid Options
options['importLoaders'] should NOT have additional properties

 @ ./pages/index.jsx 19:0-29
 @ multi ./pages/index.jsx

./styles/main.scss:

html,
body {
  background-color: papayawhip;
}

./pages/index.jsx:

import React, { Component, Fragment } from 'react'
import Link from 'next/link'
import '../styles/main.scss'

class Landing extends Component {
  render () {
    return (
      <Fragment>
        <p>hi there</p>
        <Link href='/test'>come here</Link>
      </Fragment>
    )
  }
}

export default Landing

from next-plugins.

fadiquader avatar fadiquader commented on August 24, 2024

I solved by installing the dependencies below

"dependencies": {
"css-loader": "^0.28.9",
"extract-text-webpack-plugin": "^3.0.2",
"find-up": "^2.1.0",
"ignore-loader": "^0.1.2",
"postcss-loader": "^2.0.10",
"style-loader": "^0.19.1"
},
"devDependencies": {
"webpack": "^3.10.0"
}

from next-plugins.

httpete-ire avatar httpete-ire commented on August 24, 2024

same issue here

Module build failed: ValidationError: Style Loader Invalid Options

options['importLoaders'] should NOT have additional properties


 @ ./pages/components/alert.js 10:0-37
 @ multi ./pages/components/alert.js

./pages/index.scss:

body {
  background: red;
}

./pages/index.jsx:

import styles from './index.scss';

export default () => (
  <div>Hello world</div>
);

next.config.js:

const withSass = require('@zeit/next-sass');
module.exports = withSass({
  webpack(config, options) {
    config.module.rules.push({
      test: /\.svg$/,
      issuer: [/\.css$/, /\.(scss|sass)$/],
      loader: 'file-loader',
      query: {
        name: 'assets/icons/[name].[ext]',
      },
    });

    return config;
  },
});

from next-plugins.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.