Skip to content

Commit

Permalink
[fix] disable HMR in tests (#5552)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmccann authored Jul 15, 2022
1 parent 8407144 commit a38040c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/kit/test/apps/amp/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const config = {
server: {
fs: {
allow: [path.resolve('../../../src')]
}
},
hmr: false
}
};

Expand Down
3 changes: 2 additions & 1 deletion packages/kit/test/apps/basics/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ const config = {
server: {
fs: {
allow: [path.resolve('../../../src')]
}
},
hmr: false
}
};

Expand Down
3 changes: 2 additions & 1 deletion packages/kit/test/apps/options-2/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const config = {
server: {
fs: {
allow: [path.resolve('../../../src')]
}
},
hmr: false
}
};

Expand Down
3 changes: 2 additions & 1 deletion packages/kit/test/apps/options/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ const config = {
server: {
fs: {
allow: [path.resolve('../../../src')]
}
},
hmr: false
}
};

Expand Down

0 comments on commit a38040c

Please sign in to comment.