levkin.ca/vite.config.js
ilia b9a601894d Add levkin.ca design concepts (Spec, Slab, Relay, Vault).
Four static landing-page options with Vite build, cal booking, and links to sibling sites.

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

17 lines
436 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'),
},
},
},
});