Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/code-farmer-i/vite-plugin-prismjs
https://github.com/code-farmer-i/vite-plugin-prismjs
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/code-farmer-i/vite-plugin-prismjs
- Owner: code-farmer-i
- Created: 2021-07-07T09:07:07.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-01-19T08:51:41.000Z (12 months ago)
- Last Synced: 2024-10-16T19:36:40.133Z (3 months ago)
- Language: TypeScript
- Size: 32.2 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Vite Plugin Prismjs
## Configuring the plugin
```js
// vite.config.js
import { defineConfig } from 'vite';
import prismjs from 'vite-plugin-prismjs';export default defineConfig({
plugins: [
prismjs({
languages: 'all',
}),
],
});
```## Options
See [babel-plugin-prismjs](https://github.com/mAAdhaTTah/babel-plugin-prismjs#configuring-the-plugin).