levkin.ca/vite.config.js
ilia 85229b09c8 Prune repo to spec and stack-folder only.
Remove cards stack, rack, trace, slab, relay, vault, unused preview
PNGs, and stack-only test scripts. Update home page, README, and Vite inputs.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-21 21:41:33 -04:00

15 lines
341 B
JavaScript

import { resolve } from 'path';
import { defineConfig } from 'vite';
export default defineConfig({
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
spec: resolve(__dirname, 'spec/index.html'),
stackFolder: resolve(__dirname, 'stack-folder/index.html'),
},
},
},
});