14 lines
223 B
TypeScript
14 lines
223 B
TypeScript
import { defineConfig } from 'vite';
|
|
|
|
// https://vitejs.dev/config
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
login: 'login.html',
|
|
index: 'index.html'
|
|
}
|
|
}
|
|
}
|
|
});
|