PIbd-21_MasenkinMS_WebDev_F.../LabWork_02/vite.config.js

17 lines
544 B
JavaScript
Raw Permalink Normal View History

2023-11-10 02:05:00 +04:00
import { resolve } from 'path'
import { defineConfig } from 'vite'
export default defineConfig({
build: {
rollupOptions: {
input: {
main: resolve(__dirname, 'index.html'),
armor: resolve(__dirname, 'armor.html'),
account: resolve(__dirname, 'account.html'),
shop: resolve(__dirname, 'shop.html'),
about: resolve(__dirname, 'about_us.html'),
contact: resolve(__dirname, 'contact_us.html')
},
},
},
})