import { defineConfig } from 'vite';
import type { PluginOption } from 'vite';
import vitePluginMPA from '@sunday-sky/vite-plugin-mpa';
// https://vite.dev/config/
export default defineConfig({
// ...
plugins: [
// ...
vitePluginMPA({
// Configure your pages
pages: {
index: {
title: 'index',
entry: 'src/pages/index/main.ts',
template: 'template/index.html',
},
index2: {
title: 'index2',
entry: 'src/pages/index2/main.ts',
template: 'template/index2.html',
},
},
}) as PluginOption,
],
});