App Version
Display the version of your project in the settings
A plugin for Strapi Headless CMS that displays your app version in the Strapi settings
Features
- Display your app version in the Strapi settings
Usage
To configure the App Version plugin, add your configuration to the plugin settings. The configuration consist of an object with the version:
1type Config = {
2 version: string
3}
Example Configuration
1// config/plugins.ts
2import type { Config as AppVersionConfig } from 'strapi-plugin-app-version/dist/server/src/config'
3
4import packageJson from '../package.json'
5
6export default () => ({
7 'app-version': {
8 enabled: true,
9 config: {
10 version: packageJson.version,
11 } satisfies AppVersionConfig,
12 }
13})
Install now
npm install strapi-plugin-app-version
Create your own plugin
Check out the available plugin resources that will help you to develop your plugin or provider and get it listed on the marketplace.