Clone of the 40K rankings project adapted for Age of Sigmar: leagueId RtgcexBzqjCM, AOS-branded headings, separate cache key, and CI/CD deploying to /var/www/domains/gateway-gamers.net/aos-rankings/. Co-Authored-By: Claude Sonnet 4.6 <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'),
|
|
}
|
|
}
|
|
}
|
|
});
|