mirror of
https://github.com/EFForg/rayhunter.git
synced 2026-05-29 21:29:27 -07:00
Changes to web configs
This commit is contained in:
committed by
Will Greenberg
parent
0be2b02349
commit
41133ba793
@@ -1,4 +1,4 @@
|
||||
import { defineConfig } from "vitest/config";
|
||||
import { defineConfig } from 'vitest/config';
|
||||
import { sveltekit } from '@sveltejs/kit/vite';
|
||||
|
||||
export default defineConfig({
|
||||
@@ -16,11 +16,15 @@ export default defineConfig({
|
||||
console.log('Sending Request to the Target:', req.method, req.url);
|
||||
});
|
||||
proxy.on('proxyRes', (proxyRes, req, _res) => {
|
||||
console.log('Received Response from the Target:', proxyRes.statusCode, req.url);
|
||||
console.log(
|
||||
'Received Response from the Target:',
|
||||
proxyRes.statusCode,
|
||||
req.url
|
||||
);
|
||||
});
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
plugins: [sveltekit()],
|
||||
|
||||
|
||||
Reference in New Issue
Block a user