Skip to content

Commit

Permalink
Simplify test and trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
lukastaegert committed Aug 22, 2022
1 parent 897d0e3 commit 0e2f2f6
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions test/form/samples/quote-id/_config.js
Expand Up @@ -22,14 +22,8 @@ module.exports = {
plugins: [
{
resolveId(id) {
if (id === 'external1') {
return { id: external1, external: true };
}
if (id === 'external2') {
return { id: external2, external: true };
}
if (id === 'external3') {
return { id: external3, external: true };
if (id.startsWith('external')) {
return { id, external: true };
}
}
}
Expand Down

0 comments on commit 0e2f2f6

Please sign in to comment.