Skip to content

Commit

Permalink
feat(css): change localIdentName
Browse files Browse the repository at this point in the history
  • Loading branch information
Ovechkin committed Jul 8, 2024
1 parent f0deb49 commit 32b4e8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/css/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module.exports = () => ({
modifyWebpackConfig({env: {target, dev: isDev}, webpackConfig}) {
const isServer = target === 'node'

const localIdentName = isDev ? '[path]__[name]__[local]' : '[contenthash:base64:8]'
const localIdentName = isDev ? '[path][name]__[local]' : '[contenthash:base64:8]'

let loaders
let vendorCSSLoaders
Expand Down

0 comments on commit 32b4e8c

Please sign in to comment.