Skip to content

Commit

Permalink
Revert Vite ignore of /@ (#583)
Browse files Browse the repository at this point in the history
  • Loading branch information
melloware authored Dec 8, 2023
1 parent bea5c37 commit 07f6f81
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,6 @@ static List<String> getNormalizedIgnoredPathPrefixes(QuinoaConfig config) {
readExternalConfigPath(allConfig, "quarkus.resteasy.path").ifPresent(defaultIgnore::add);
readExternalConfigPath(allConfig, "quarkus.resteasy-reactive.path").ifPresent(defaultIgnore::add);
readExternalConfigPath(allConfig, "quarkus.http.non-application-root-path").ifPresent(defaultIgnore::add);

// Vite in dev mode requests /@vite/client and /@reactrefresh
if (isDevServerMode(config)) {
defaultIgnore.add("/@");
}
return defaultIgnore;
}).stream().map(s -> s.startsWith("/") ? s : "/" + s).collect(toList());
}
Expand Down

0 comments on commit 07f6f81

Please sign in to comment.