mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-14 00:16:05 +08:00
13 lines
284 B
JavaScript
13 lines
284 B
JavaScript
|
|
import {getVersion} from './getVersion.mjs';
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Somehow inject app version to vite build context
|
||
|
|
* @return {import('vite').Plugin}
|
||
|
|
*/
|
||
|
|
export const injectAppVersion = () => ({
|
||
|
|
name: 'inject-version',
|
||
|
|
config: () => {
|
||
|
|
process.env.VITE_APP_VERSION = getVersion();
|
||
|
|
},
|
||
|
|
});
|