Skip to content

Commit

Permalink
fix: liquid styles file path incorrect
Browse files Browse the repository at this point in the history
  • Loading branch information
hayes committed Apr 28, 2021
1 parent beb5ff6 commit e9163a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webpack/parts/liquid-styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const liquidStyles = {
if (!isDev) {
liquidStyles.module.rules[0].generator = {
filename: (pathData) => {
return `assets/${pathData.runtime.split('.')[0]}.${
return `${pathData.runtime.split('.')[0]}.${
path.basename(pathData.filename).split('.')[0]
}.styleLiquid.css.liquid`;
},
Expand Down

0 comments on commit e9163a1

Please sign in to comment.