Skip to content

Commit

Permalink
fix(webpack): remove double-dotted file extensions in webpack config (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rusackas authored Mar 12, 2024
1 parent 6a7e5c2 commit 47ae9d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions superset-frontend/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ const config = {
},
type: 'asset',
generator: {
filename: '[name].[contenthash:8].[ext]',
filename: '[name].[contenthash:8][ext]',
},
},
{
Expand Down Expand Up @@ -431,7 +431,7 @@ const config = {
test: /\.(jpg|gif)$/,
type: 'asset/resource',
generator: {
filename: '[name].[contenthash:8].[ext]',
filename: '[name].[contenthash:8][ext]',
},
},
/* for font-awesome */
Expand Down

0 comments on commit 47ae9d4

Please sign in to comment.