Skip to content

Commit

Permalink
Update lib/makeWebpackConfig.js
Browse files Browse the repository at this point in the history
  • Loading branch information
askoufis authored Nov 18, 2024
1 parent d686e54 commit 6085c3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/makeWebpackConfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@ module.exports = async (playroomConfig, options) => {
// Only apply VanillaExtract plugin to playroom's source `.css.ts` files
return (
/\.css\.ts$/i.test(filePath) &&
includePaths.some((playroomPath) =>
filePath.startsWith(playroomPath)
includePaths.some((includePath) =>
filePath.startsWith(includePath)
)
);
},
Expand Down

0 comments on commit 6085c3d

Please sign in to comment.