28 lines
751 B
JavaScript
28 lines
751 B
JavaScript
// @ts-ignore
|
|
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
|
|
export default defineConfig({
|
|
<<<<<<< HEAD
|
|
plugins: [react()],
|
|
server: {
|
|
port: 5173,
|
|
}
|
|
});
|
|
=======
|
|
build: {
|
|
rollupOptions: {
|
|
input: {
|
|
index: resolve(__dirname, "index.html"),
|
|
applicant: resolve(__dirname, "applicant.html"),
|
|
contacts: resolve(__dirname, "contacts.html"),
|
|
history: resolve(__dirname, "history.html"),
|
|
mission: resolve(__dirname, "mission.html"),
|
|
student: resolve(__dirname, "student.html"),
|
|
teacher: resolve(__dirname, "teacher.html"),
|
|
},
|
|
},
|
|
},
|
|
});
|
|
>>>>>>> lab4
|