Skip to content
This repository was archived by the owner on Aug 27, 2026. It is now read-only.
This repository was archived by the owner on Aug 27, 2026. It is now read-only.

Custom attributes setting doesn't respect media #458

Description

@tmkn
  • webpack Version: 4.41.5
  • style-loader Version: 1.1.13

I'm updating style-loader from 0.20.3 to 1.1.13
One of the changes I needed to do was to rename attr to attributes, however this doesn't write out the media attribute anymore (they are written out with with injectType: linkTag but not with the default setting aka injectType: styleTag ):

{ loader: 'style-loader', options: {
                                    attrs: {
                                        media: 'only screen and (max-device-width: 800px)'
                                    }
                                }
                            }

to

{ loader: 'style-loader', options: {
                                    attributes: {
                                        media: 'only screen and (max-device-width: 800px)'
                                    }
                                }
                            }

Expected Behavior

style tags contain the media attribute

Actual Behavior

style tags don't contain the media attribute

How Do We Reproduce?

use the config from above

full config:

                {
                    test: /\.less$/,
                    oneOf: [
                        {
                            resourceQuery: /mobile/,
                            use: [
                                { loader: 'style-loader', options: {
                                    attributes: {
                                        media: 'only screen and (max-device-width: 800px)'
                                    }
                                }
                            },
                            'css-loader',
                            'less-loader'
                            ]
                        },
                        {
                            resourceQuery: /tablet/,
                            use: [
                                { loader: 'style-loader', options: {
                                    attributes: {
                                        media: 'only screen and (max-device-width: 1024px)'
                                    }
                                }
                            },
                            'css-loader',
                            'less-loader'
                            ]
                        },
                        {
                            use: [
                                'style-loader',
                                'css-loader',
                                'less-loader'
                            ]
                        }
                    ],
                },

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Fields

    Priority

    None yet

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions