Skip to content

Commit

Permalink
Fix debug mode on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
svanherk committed Jun 21, 2023
1 parent ed5a6b5 commit a45455b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/headed-mode-plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { globSync } from 'glob';

export function headedMode({ manual, watch, pattern }) {

const files = globSync(pattern, { ignore: 'node_modules/**' });
const files = globSync(pattern, { ignore: 'node_modules/**', posix: true });

return {
name: 'brightspace-headed-mode',
Expand Down

0 comments on commit a45455b

Please sign in to comment.