18 lines
620 B
JavaScript
18 lines
620 B
JavaScript
import { resolve } from "path";
|
|
// eslint-disable-next-line import/no-extraneous-dependencies
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
main: resolve(__dirname, "index.html"),
|
|
info: resolve(__dirname, "info.html"),
|
|
education: resolve(__dirname, "education.html"),
|
|
studentLive: resolve(__dirname, "studentLive.html"),
|
|
contacts: resolve(__dirname, "contacts.html"),
|
|
news: resolve(__dirname, "news.html"),
|
|
},
|
|
},
|
|
},
|
|
}); |