Skip to content

Commit b799a19

Browse files
committed
fix: exclude sass file in monorepos
1 parent 0f4b522 commit b799a19

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/runtime/src/helpers/functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ const traceNextServer = async (publish: string): Promise<string[]> => {
263263
if (f.endsWith('.development.js')) return false
264264

265265
// not needed for API Routes!
266-
if (f === 'node_modules/sass/sass.dart.js') return false
266+
if (f.endsWith('node_modules/sass/sass.dart.js')) return false
267267

268268
return true
269269
})

0 commit comments

Comments
 (0)