mirror of
https://github.com/SphericalKat/medium.rip.git
synced 2024-11-16 11:25:57 +00:00
13 lines
259 B
JavaScript
13 lines
259 B
JavaScript
import { resolve } from 'path'
|
|
import { defineConfig } from 'vite'
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, 'index.html'),
|
|
show: resolve(__dirname, 'show.html')
|
|
}
|
|
}
|
|
}
|
|
}) |