levkin.ca/vite.config.js
ilia cfca7aade8 Add Stack design — sticky scroll layers L0 through L6.
Services presented as a literal card stack with depth indicator and enriched sibling-site content.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-20 22:39:05 -04:00

18 lines
491 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'),
slab: resolve(__dirname, 'slab/index.html'),
relay: resolve(__dirname, 'relay/index.html'),
vault: resolve(__dirname, 'vault/index.html'),
stack: resolve(__dirname, 'stack/index.html'),
},
},
},
});