0.1.6 • Published 2 years ago

vuepress-plugin-full-text-search-page v0.1.6

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

vuepress2-plugin-full-text-search

VuePress v2 plugin that adds full-text search box.

:warning: WARNING: this project is considered to be in BETA until VuePress v2 is available for general use and the API is stable!

Install

npm i -D vuepress2-plugin-full-text-search

Config

:warning: Text-based plugin definitions will not work because this plugin does not yet follow the naming convention.

For CJS

e.g. .vuepress/config.js

module.exports = {
  plugins: [[require("vuepress2-plugin-full-text-search").default]],
};

For ESM

e.g. .vuepress/config.js

import pluginFullTextSearch from "vuepress2-plugin-full-text-search";
module.exports = {
  plugins: [[pluginFullTextSearch]],
};