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:
type Config = {
version: string
}Example Configuration
// config/plugins.ts
import type { Config as AppVersionConfig } from 'strapi-plugin-app-version/dist/server/src/config'
import packageJson from '../package.json'
export default () => ({
'app-version': {
enabled: true,
config: {
version: packageJson.version,
} satisfies AppVersionConfig,
}
})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.