Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/fe6/vite-plugin-html-mpa

vite 的多页面配置插件
https://github.com/fe6/vite-plugin-html-mpa

Last synced: 4 days ago
JSON representation

vite 的多页面配置插件

Awesome Lists containing this project

README

        

# vite-plugin-html-mpa

> HTML template for vite app, like html-webpack-plugin for webpack.


wakatime

NPM Publish


downloads


npm version


License: MIT

## Motivation

- Vite need html for entry file, which means we must have
- projectRoot/index.html for SPA
- projectRoot/src/pages/*/index.html for MPA
- Why not we use html template for all entry html
- Also we should support ejs/lodash.template syntax for the html content, like setting ``.

## Usage

```sh
yarn add vite-plugin-html-mpa
```

```ts
// vite.config.ts
import htmlTemplate from 'vite-plugin-html-mpa'

// @see https://vitejs.dev/config/
export default defineConfig({
plugins: [
// ...other plugins
htmlTemplate(/* options */),
],
})
```

## Options

[例子参考](https://github.com/fe6/water-pro)

```ts
// for SPA, you can do nothing, auto reuse public/index.html as template

// for MPA, you can custom template path(default is public/index.html) and page title
{
// where pages ?
pagesDir: 'src/pages',
// define pages like vue-cli
pages: {
index: {
template: './public/index.html',
title: 'Home Page',
},
subpage: {
template: './src/pages/subpage/index.html',
title: 'Sub Page',
},
},
// expose to template
data: {
title: 'Home Page',
},
}
```

- [更多配置](https://github.com/IndexXuan/vite-plugin-html-mpa/blob/main/src/lib/options.ts)

## Underlying
- Thanks to [vite-plugin-virtual-html](https://github.com/Windson1806/vite-plugin-virtual-html)
- Thanks to [vite-plugin-vue-cli](https://github.com/IndexXuan/vite-plugin-vue-cli/blob/main/src/index.ts#L165)

## Further
- [vue-cli-plugin-vite](https://github.com/IndexXuan/vue-cli-plugin-vite)
- [vite-plugin-mpa](https://github.com/IndexXuan/vite-plugin-mpa)