I am currently working on a personal project with astro and am experiencing permanently slow connections.
astro.config.mjs:
// @ts-check
import { defineConfig } from "astro/config";
import svelte from "@astrojs/svelte";
import tailwindcss from "@tailwindcss/vite";
import { paraglideVitePlugin } from "@inlang/paraglide-js";
import node from "@astrojs/node";
// https://astro.build/config
export default defineConfig({
integrations: [svelte()],
output: "server",
vite: {
plugins: [
tailwindcss(),
paraglideVitePlugin({
project: "./project.inlang",
outdir: "./src/paraglide",
}),
],
},
adapter: node({
mode: "standalone",
}),
});
The project currently does not have any middleware.
All my pages suffer from slow connecting, even though it is in localhost, but the dashboard (only page with svelte) also suffers from long wait times.