Replace the bare `getprobo.com` domain and the `www.getprobo.com` marketing host with `probo.com` / `www.probo.com` across the codebase. Functional subdomains (app, console, notification, custom, test, cookie-banner, compliance) keep their existing `getprobo.com` hosts, and changelog entries are left untouched. Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
15 lines
437 B
TypeScript
15 lines
437 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
// Use the PUBLIC_ prefix so the example accepts the same env var names
|
|
// (PUBLIC_COOKIE_BANNER_ID, PUBLIC_COOKIE_BANNER_API_BASE_URL,
|
|
// PUBLIC_POSTHOG_API_KEY) used by probo.com. Copy .env.example to .env
|
|
// and fill in your values.
|
|
envPrefix: "PUBLIC_",
|
|
server: {
|
|
port: 5180,
|
|
},
|
|
});
|