mnswpr/vite.config.js
Ayo f6b71023ec
Some checks are pending
Checks / lint (push) Waiting to run
Checks / test (push) Waiting to run
Checks / content (push) Waiting to run
chore: flatten the app workspace
2026-07-18 21:12:24 +02:00

14 lines
363 B
JavaScript

import { resolve } from 'node:path'
import { defineConfig } from 'vite'
// Multi-page build: the game (index.html) and the frozen Legends page.
export default defineConfig({
build: {
rollupOptions: {
input: {
main: resolve(import.meta.dirname, 'index.html'),
legends: resolve(import.meta.dirname, 'legends.html')
}
}
}
})