https://github.com/elonehoo/unplugin-deploy-info
print some help info like vite builtin
https://github.com/elonehoo/unplugin-deploy-info
print-info unplugin
Last synced: 9 months ago
JSON representation
print some help info like vite builtin
- Host: GitHub
- URL: https://github.com/elonehoo/unplugin-deploy-info
- Owner: elonehoo
- License: mit
- Created: 2023-07-13T09:36:37.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-04-10T00:41:43.000Z (9 months ago)
- Last Synced: 2025-04-10T01:36:21.629Z (9 months ago)
- Topics: print-info, unplugin
- Language: TypeScript
- Homepage: https://www.npmjs.com/package/unplugin-deploy-info
- Size: 668 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# unplugin-deploy-info
> print some help info like vite builtin
## Install
```bash
npm i -D unplugin-deploy-info
```
Vite
```ts
// vite.config.ts
import DeployInfo from 'unplugin-deploy-info/vite'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
DeployInfo({
/* options */
})
],
})
```
Example: [`playground/vite`](./playground/vite)
Nuxt
```ts
// nuxt.config.ts
export default defineNuxtConfig({
modules: [
['unplugin-deploy-info/nuxt', {
/* options */
}]
]
})
```
Example: [`playground/nuxt`](./playground/nuxt)
## License
MIT License © 2023 [Elone Hoo](https://github.com/elonehoo)