Skip to content

Instantly share code, notes, and snippets.

@shiftgeist
Created January 9, 2024 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shiftgeist/f496b5bafc36e0efc05468355350e061 to your computer and use it in GitHub Desktop.
Save shiftgeist/f496b5bafc36e0efc05468355350e061 to your computer and use it in GitHub Desktop.
Vite: Fetch package.json version
const fetchVersion = () => {
return {
name: 'html-transform',
transformIndexHtml(html) {
return html.replace(
/__APP_VERSION__/,
`v${process.env.npm_package_version}`
)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment