Paste a Best Coast Pairings event link to get roster-only stats: faction/disposition distribution, per-team ITC rank rollups, and an optional list-backfill for players missing faction/disposition data (uses the viewer's own BCP auth token, stored client-side only). Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
16 lines
320 B
JavaScript
16 lines
320 B
JavaScript
import { defineConfig } from 'vite';
|
|
import { resolve } from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
index: resolve(__dirname, 'index.html'),
|
|
}
|
|
}
|
|
}
|
|
});
|