reactql icon indicating copy to clipboard operation
reactql copied to clipboard

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

Open pomazanbohdan opened this issue 6 years ago • 0 comments

        {
          // 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
          }
        },

pomazanbohdan avatar Aug 13 '19 15:08 pomazanbohdan