Note: this plugin requires vite@^2.0.0-beta.69
.
Load package version of your package.json into your vite environment.
Will inject import.meta.env.PACKAGE_VERSION
with the version specified in your package.json.
npm i vite-plugin-package-version
// vite.config.js
import version from 'vite-plugin-package-version';
export default {
plugins: [version()],
};