import { sentrySvelteKit } from "@sentry/sveltekit"; import { sveltekit } from "@sveltejs/kit/vite"; import tailwindcss from "@tailwindcss/vite"; import sqlocal from "sqlocal/vite"; import { defineConfig } from "vite"; import "dotenv/config"; export default defineConfig({ plugins: [sentrySvelteKit({ org: "cazzzer", project: "amqtrain", authToken: process.env.SENTRY_AUTH_TOKEN, }), tailwindcss(), sveltekit(), sqlocal()], server: { allowedHosts: ["cazzzer.pgrok.cazzzer.com"], }, });