mirror of
https://github.com/waynesutton/markdown-site.git
synced 2026-01-12 04:09:14 +00:00
47 lines
1.1 KiB
TypeScript
47 lines
1.1 KiB
TypeScript
import { defineConfig, loadEnv } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig(({ mode }) => {
|
|
const env = loadEnv(mode, process.cwd(), "");
|
|
// Convert Convex cloud URL to HTTP site URL
|
|
const convexUrl = env.VITE_CONVEX_URL || "";
|
|
const convexSiteUrl = convexUrl.replace(".cloud", ".site");
|
|
|
|
return {
|
|
plugins: [react()],
|
|
build: {
|
|
outDir: "dist",
|
|
},
|
|
server: {
|
|
proxy: {
|
|
// Proxy RSS and sitemap to Convex HTTP endpoints in development
|
|
"/rss.xml": {
|
|
target: convexSiteUrl,
|
|
changeOrigin: true,
|
|
},
|
|
"/rss-full.xml": {
|
|
target: convexSiteUrl,
|
|
changeOrigin: true,
|
|
},
|
|
"/sitemap.xml": {
|
|
target: convexSiteUrl,
|
|
changeOrigin: true,
|
|
},
|
|
"/api/posts": {
|
|
target: convexSiteUrl,
|
|
changeOrigin: true,
|
|
},
|
|
"/api/post": {
|
|
target: convexSiteUrl,
|
|
changeOrigin: true,
|
|
},
|
|
"/meta/post": {
|
|
target: convexSiteUrl,
|
|
changeOrigin: true,
|
|
},
|
|
},
|
|
},
|
|
};
|
|
});
|