test: update test website id

This commit is contained in:
moonrailgun 2023-09-05 15:35:12 +08:00
parent a4c4a6d9e9
commit a70a360a65
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
<script>
const el = document.createElement('script');
el.src = location.origin + '/tracker.js';
el.setAttribute('data-website-id', '53b9a4c1-4a4e-4ec9-8d42-2a2941825bd2'); // For test
el.setAttribute('data-website-id', '873be511-f7a1-442b-a731-2986a09e28ff'); // For test
document.head.append(el);
</script>
</body>

View File

@ -32,5 +32,5 @@ app.use((err: any, req: any, res: any, next: any) => {
ViteExpress.listen(app, port, () => {
console.log(`Server is listening on port ${port}...`);
console.log(`Website: http://localhost:${port}`);
console.log(`Website: http://127.0.0.1:${port}`);
});