1.0.4-alpha.29 • Published 11 months ago

vitepress-plugin-search-custom v1.0.4-alpha.29

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

Provides local search to your documentation site

Uses flexsearch.

Installing

npm i vitepress-plugin-search flexsearch -D

Add the plugin

  • Using an vite.config file
//vite.config.ts
import { SearchPlugin } from "vitepress-plugin-search";
import { defineConfig } from "vite";

//default options
var options = {
  ...flexSearchIndexOptions,
  previewLength: 62,
  buttonLabel: "Search",
  placeholder: "Search docs",
  allow: [],
  ignore: [],
};

export default defineConfig({
  plugins: [SearchPlugin(options)],
});
  • Using config.js or config.ts
import { SearchPlugin } from "vitepress-plugin-search";
import { defineConfig } from "vitepress";
export default defineConfig({
  vite: { plugins: [SearchPlugin(options)] }
});

Options

Accept FlexSearch Index Options

Multi language support

Provided by flexsearch

See chinese settings for example

1.0.4-alpha.29

11 months ago

1.0.4-alpha.28

11 months ago

1.0.4-alpha.27

11 months ago

1.0.4-alpha.26

11 months ago

1.0.4-alpha.25

11 months ago

1.0.4-alpha.24

11 months ago

1.0.4-alpha.23

11 months ago

1.0.4-alpha.22

11 months ago

1.0.4-alpha.21

11 months ago

1.0.4-alpha.20

11 months ago