vite-plugin-bib
v1.0.2
Published
A Vite plugin to import BibTeX files as JS objects.
Downloads
3
Maintainers
Readme
vite-plugin-bib
A Vite plugin to import BibTeX files as JS objects.
Installation
npm install -D vite-plugin-bib
# or
yarn add -D vite-plugin-bib
# or
pnpm add -D vite-plugin-bib
# or
bun add -D vite-plugin-bib
Usage
// vite.config.[tj]s
import bib from "vite-plugin-bib";
export default {
plugins: [
// ...other plugins
bib(),
],
};
Restart your Vite server and you can now import BibTeX files as JS objects:
import bibliography from "./bibliography.bib";
console.log(bibliography);
Types of bibliography files
You can add type definitions to your BibTeX files by including the entry in vite-env.d.ts
:
// vite-env.d.ts
/// <reference types="vite/client" />
/// <reference types="vite-plugin-bib/client" />