We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c1ef48 commit 6434df4Copy full SHA for 6434df4
vite.config.mts
@@ -13,7 +13,8 @@ import l10nPlugin from './build/l10n-plugin.mts'
13
const __dirname = url.fileURLToPath(new URL('.', import.meta.url))
14
15
const appVersion = JSON.stringify(process.env.npm_package_version || 'nextcloud-vue')
16
-const SCOPE_VERSION = md5(appVersion).slice(0, 7) as string
+const versionHash = md5(appVersion).slice(0, 7) as string
17
+const SCOPE_VERSION = JSON.stringify(versionHash)
18
19
// Entry points which we build using vite
20
const entryPoints = {
0 commit comments