Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pengx17/vite-plugin-logseq
Vite plugin for developing Logseq Plugins
https://github.com/pengx17/vite-plugin-logseq
Last synced: 2 months ago
JSON representation
Vite plugin for developing Logseq Plugins
- Host: GitHub
- URL: https://github.com/pengx17/vite-plugin-logseq
- Owner: pengx17
- License: mit
- Created: 2022-03-18T01:47:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-06T17:32:34.000Z (about 2 years ago)
- Last Synced: 2024-09-19T12:48:23.617Z (3 months ago)
- Language: TypeScript
- Size: 49.8 KB
- Stars: 10
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# vite-plugin-logseq
A Vite plugin that is essential for developing Vite plugins locally.
It should fix the follow HMR issues for you:
- a valid index.html for local development
- reload the plugin if update is outside of your UI framework's HMR boundary## Install
`npm install vite-plugin-logseq`
## Change your vite.config.ts
```ts
import logseqPlugin from "vite-plugin-logseq";// in the plugins session
plugins: [
...,
logseqPlugin()
]
```[MIT](/LICENSE) @pengx17