Fix build config to include all pages, partials, and images in dist

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-05-28 17:31:37 -05:00
co-authored by Claude Sonnet 4.6
parent 9b4ee80fbc
commit b29de9fa2e
9 changed files with 17 additions and 2 deletions
View File
View File

Before

Width:  |  Height:  |  Size: 113 KiB

After

Width:  |  Height:  |  Size: 113 KiB

Before

Width:  |  Height:  |  Size: 4.3 MiB

After

Width:  |  Height:  |  Size: 4.3 MiB

Before

Width:  |  Height:  |  Size: 4.6 MiB

After

Width:  |  Height:  |  Size: 4.6 MiB

Before

Width:  |  Height:  |  Size: 4.1 MiB

After

Width:  |  Height:  |  Size: 4.1 MiB

Before

Width:  |  Height:  |  Size: 4.9 MiB

After

Width:  |  Height:  |  Size: 4.9 MiB

Before

Width:  |  Height:  |  Size: 4.4 MiB

After

Width:  |  Height:  |  Size: 4.4 MiB

+17 -2
View File
@@ -1,3 +1,18 @@
import { defineConfig } from 'vite' import { defineConfig } from 'vite';
import { resolve } from 'path';
import { fileURLToPath } from 'url';
export default defineConfig({}) const __dirname = fileURLToPath(new URL('.', import.meta.url));
export default defineConfig({
build: {
rollupOptions: {
input: {
index: resolve(__dirname, 'index.html'),
signups: resolve(__dirname, 'signups.html'),
reporting: resolve(__dirname, 'reporting.html'),
standings: resolve(__dirname, 'standings.html'),
}
}
}
});