Giter VIP home page Giter VIP logo

Comments (3)

lukeed avatar lukeed commented on July 18, 2024 1

Hey, are you sure you want to do this? 😸 CSS modules are actually pretty amazing – the ugly hash only shows up for development. For production, the selectors are compressed to much shorter, unique selectors. This will often save bytes on the classnames alone 👍 You can inspect the classNames on https://pwa.cafe for a production example.

As for actually disabling these, you have two options:

  1. Wrap everything in :global() modifier. This will tell css-loader to leave these selector as is and not modify the name.

    :global(.gs-header) {
      background: blue;
    }

See here for more info

  1. You have to modify the current config & disable modules – instead of adding a new CSS rule that still uses modules (modules: true) but with a different naming convention. The one PWA includes runs first, so yours never gets to run.

Also, simply running unshift() instead of push() won't work either because it adds css-loader without any style-loader or postcss-loader chaining.

 config.module.rules.forEach(rule => {
   if (Array.isArray(rule.use)) {
     rule.use.forEach(obj => {
       if (obj.loader && obj.loader === 'css-loader') {
         obj.options.modules = false; // DISABLE
       }
     });
   }
 });

Hope that helps!

from pwa.

lukeed avatar lukeed commented on July 18, 2024 1

Yeah, I can relate 😆 I didn't like CSS modules at all at first, but I've definitely warmed up to them since.

Great! 🙌

from pwa.

guilhermeutzig avatar guilhermeutzig commented on July 18, 2024

I don't really like to work with hashes on my CSS, but it's a personal thing, nothing more than this hahaha.

Thank you very much for this, solved my problem!!

from pwa.

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.