You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
{
// 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
}
},
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
to
The text was updated successfully, but these errors were encountered: