* remove Every App SDK and add auth modes for Cloudflare Access and local_noauth * align local dev auth defaults and normalize Access team domain * Apply suggestions from code review * restore local drizzle D1 URL helper * save * fix auth error mapping and document self-hosting setup * Tweak readme * improve auth config error UI and remove manifest link * fix team domain config validation and docs anchor
36 lines
1013 B
TypeScript
36 lines
1013 B
TypeScript
import { tanstackStart } from "@tanstack/react-start/plugin/vite";
|
|
import { defineConfig, loadEnv } from "vite";
|
|
import tsConfigPaths from "vite-tsconfig-paths";
|
|
import viteReact from "@vitejs/plugin-react";
|
|
import tailwindcss from "@tailwindcss/vite";
|
|
import { cloudflare } from "@cloudflare/vite-plugin";
|
|
import { devtools } from "@tanstack/devtools-vite";
|
|
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), "");
|
|
const port = env.PORT ? Number(env.PORT) : 3001;
|
|
const showDevtools = env.VITE_SHOW_DEVTOOLS !== "false";
|
|
|
|
return {
|
|
envPrefix: ["VITE_"],
|
|
server: {
|
|
port,
|
|
},
|
|
plugins: [
|
|
showDevtools
|
|
? devtools({
|
|
consolePiping: {
|
|
enabled: true,
|
|
levels: ["log", "warn", "error", "info", "debug"],
|
|
},
|
|
})
|
|
: null,
|
|
cloudflare({ viteEnvironment: { name: "ssr" } }),
|
|
tsConfigPaths(),
|
|
tanstackStart(),
|
|
viteReact(),
|
|
tailwindcss(),
|
|
],
|
|
};
|
|
});
|