Awesome
vite-plugin-multi-pages
English | 中文
Multi page applications supporting vite - vue2、3, react, etc
How To Use
Install
yarn add vite-plugin-multi-pages
# or
pnpm add vite-plugin-multi-pages
ToConfigure
vite.config.ts
import mpa from 'vite-plugin-multi-pages';
export default defineConfig({
plugins: [mpa(/* options */)],
});
Options
export interface MpaOptions {
/**
* defaultOpenPage
* @default true
* @example / (root path) | true (first page) | test-two
*/
defaultOpenPage: '/' | boolean | string;
/**
* scanning dir
* @default src/views
*/
scanDir: string;
/**
* scanFile
* @default 'main.{js,ts,jsx,tsx}'
*/
scanFile: string;
/**
* html fileName
* @default 'index.html'
*/
filename: string;
/**
* rewrite rule list
* @default []
*/
rewrites: Rewrite[];
/**
* open or build a specific page under scanDir
* @default ''
* @example test-one,test-twos
*/
specialPageNames: string;
/**
* ignore open or build a specific page under scanDir
* @default ''
* @example test-twos
*/
ignorePageNames: string;
}
examples
More
- Cooperate
vite-plugin-html-template-mpa
plugin : https://github.com/Miofly/vite-plugin-html-template-mpa - Cooperate
vite-plugin-vconsole-mpa
plugin config vconsole : https://github.com/Miofly/vite-plugin-vconsole-mpa