Ура vite работает нормально

This commit is contained in:
2025-03-17 12:24:10 +04:00
parent 2b2c04f2df
commit 321bf80c3c

17
vite.config.js Normal file
View File

@@ -0,0 +1,17 @@
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"),
},
},
},
});