511caf1c78
Flattens Prusa's three-document route (INDX guide, Gen 2 upgrade guide, and the combined article) into one linear list of 13 blocks with entry and stop points. Progress is kept in localStorage; no backend. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
9 lines
227 B
TypeScript
9 lines
227 B
TypeScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: { host: "0.0.0.0", port: 5180 },
|
|
build: { outDir: "dist", emptyOutDir: true },
|
|
});
|