medium.rip/frontend/vite.config.ts
Sphericalkat bd06b7ee37 refactor(frontend): use typescript config files
Signed-off-by: Sphericalkat <amolele@gmail.com>
2023-05-29 14:47:44 +05:30

13 lines
259 B
TypeScript

import { resolve } from 'path'
import { defineConfig } from 'vite'
export default defineConfig({
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
show: resolve(__dirname, 'show.html')
}
}
}
})