vite.server.allowedHosts nested correctly
This commit is contained in:
Kunthawat Greethong
2026-04-28 11:42:13 +07:00
parent 4d536cb2a0
commit 1a8e7e79ae
4 changed files with 13 additions and 2 deletions

View File

@@ -1,2 +1,4 @@
{"t":0,"agent":"a500508","agent_type":"unknown","event":"agent_stop","success":true}
{"t":0,"agent":"a24721c","agent_type":"unknown","event":"agent_stop","success":true}
{"t":0,"agent":"a535b8e","agent_type":"unknown","event":"agent_stop","success":true}
{"t":0,"agent":"ad598ef","agent_type":"unknown","event":"agent_stop","success":true}

View File

@@ -0,0 +1,7 @@
{
"tool_name": "WebFetch",
"tool_input_preview": "{\"url\":\"https://docs.astro.build/en/reference/configuration-reference/\",\"prompt\":\"How to configure allowedHosts in Astro 6 server configuration? What is the correct way to allow all hosts in Astro 6?\"...",
"error": "timeout of 60000ms exceeded",
"timestamp": "2026-04-28T04:22:56.894Z",
"retry_count": 1
}

View File

@@ -3,5 +3,5 @@
"total_spawned": 0,
"total_completed": 0,
"total_failed": 0,
"last_updated": "2026-04-28T04:19:32.716Z"
"last_updated": "2026-04-28T04:22:43.491Z"
}

View File

@@ -6,6 +6,8 @@ export default defineConfig({
port: 4321,
},
vite: {
server: {
allowedHosts: true,
},
},
})