diff --git a/.env.example b/.env.example index 65c8070..0071e0a 100644 --- a/.env.example +++ b/.env.example @@ -1,4 +1,4 @@ SERVER_PB="http://localhost:8090" PUBLIC_CLIENT_PB="http://127.0.0.1:8090" -PUBLIC_MSID_ASSOCIATION="{}" -PUBLIC_PLAUSIBLE_DOMAIN="plausible.example.com" \ No newline at end of file +PUBLIC_PLAUSIBLE_DOMAIN="plausible.example.com" +MSID_ASSOCIATION="{}" \ No newline at end of file diff --git a/svelte.config.js b/svelte.config.js index c9c19b0..eeee278 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -1,16 +1,11 @@ -import adapter from '@sveltejs/adapter-auto'; +import adapter from '@sveltejs/adapter-vercel'; import { vitePreprocess } from '@sveltejs/vite-plugin-svelte'; /** @type {import('@sveltejs/kit').Config} */ const config = { - // Consult https://kit.svelte.dev/docs/integrations#preprocessors - // for more information about preprocessors preprocess: [vitePreprocess({})], kit: { - // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. - // If your environment is not supported or you settled on a specific environment, switch out the adapter. - // See https://kit.svelte.dev/docs/adapters for more information about adapters. adapter: adapter() } };