Git Product home page Git Product logo

Comments (6)

sokra avatar sokra commented on May 20, 2024

Could you paste the complete error?

from css-loader.

MoOx avatar MoOx commented on May 20, 2024
ERROR in ./~/css-loader!./~/cssnext-loader!./src/index.css
Module build failed: SyntaxError: Unexpected token h
    at Object.parse (native)
    at Object.parseString (/.../node_modules/css-loader/node_modules/loader-utils/index.js:152:14)
    at(/.../node_modules/css-loader/index.js:47:25
    at String.replace (native)
    at Object.module.exports (/.../node_modules/css-loader/index.js:45:12)
 @ ./src/index.css 4:14-293 12:19-298

from css-loader.

sokra avatar sokra commented on May 20, 2024

Oh you are using the cssnext-loader... So the real css code is different:

This:

:root {
  --vr-Color-white: white;
}

.class {
  filter: drop-shadow(0 1px 0 var(--vr-Color-white));
}

transpiles to this:

.class {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="2" result="offsetblur" /><feFlood flood-color="rgba(255,255,255,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 1px 0 white);
          filter: drop-shadow(0 1px 0 white);
}

from css-loader.

MoOx avatar MoOx commented on May 20, 2024

cssnext-loader is use after so not sure why it bring a problem :/
Thanks anyway if you fixed that :)

from css-loader.

sokra avatar sokra commented on May 20, 2024

This was a bug in css-loader: It didn't like url('...') with a single '.

from css-loader.

jhnns avatar jhnns commented on May 20, 2024

👍

from css-loader.

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.