Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

css.ts localIdentName: "[local]-[hash:base64]", fail #173

Open
pomazanbohdan opened this issue Aug 13, 2019 · 0 comments
Open

css.ts localIdentName: "[local]-[hash:base64]", fail #173

pomazanbohdan opened this issue Aug 13, 2019 · 0 comments

Comments

@pomazanbohdan
Copy link

pomazanbohdan commented Aug 13, 2019

        {
          // If we're on the server, we only want to output the name
          // loader: isClient ? "css-loader" : "css-loader/locals",
          loader: "css-loader",

          options: {
            // Calculate how many loaders follow this one
            importLoaders: loader.use.length + 1,

            // Format for 'localised' CSS modules
            localIdentName: "[name]__[local]___[hash:base64:5]",

            // Add sourcemaps if we're in dev
            sourceMap,

            // Specify modules options
            ...modules
          }
        },

to

        {
          // If we're on the server, we only want to output the name
          // loader: isClient ? "css-loader" : "css-loader/locals",
          loader: "css-loader",

          options: {
            // Calculate how many loaders follow this one
            importLoaders: loader.use.length + 1,

            // Format for 'localised' CSS modules
            modules: {
              localIdentName: "[name]__[local]___[hash:base64:5]",
            },	

            // Add sourcemaps if we're in dev
            sourceMap,

            // Specify modules options
            ...modules
          }
        },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant