Personal save-for-later and Miniflux e-reader proxy for Xteink X4 (wip)
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 18 lines 362 B view raw
1import { defineConfig } from "vite"; 2import preact from "@preact/preset-vite"; 3 4export default defineConfig({ 5 plugins: [preact()], 6 root: "src/web", 7 build: { 8 outDir: "../../dist/public", 9 emptyOutDir: true, 10 }, 11 server: { 12 port: 5173, 13 proxy: { 14 "/api": "http://localhost:8787", 15 "/device": "http://localhost:8787", 16 }, 17 }, 18});