Skip to content
Snippets Groups Projects

Resolve "Offline fallback page for django legacy pages is misleading in some situations"

1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -239,7 +239,7 @@ export default defineConfig({
plugins: [
{
fetchDidSucceed: async ({ request, response }) => {
if (response.status < 400) {
if (response.status < 500) {
return response;
}
throw new Error(
Loading