mirror of
https://github.com/LmeSzinc/StarRailCopilot.git
synced 2024-11-16 14:31:16 +00:00
24 lines
597 B
JavaScript
24 lines
597 B
JavaScript
|
if (process.env.VITE_APP_VERSION === undefined) {
|
||
|
const now = new Date();
|
||
|
process.env.VITE_APP_VERSION = `${now.getUTCFullYear() - 2000}.${
|
||
|
now.getUTCMonth() + 1
|
||
|
}.${now.getUTCDate()}-${now.getUTCHours() * 60 + now.getUTCMinutes()}`;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @type {import('electron-builder').Configuration}
|
||
|
* @see https://www.electron.build/configuration/configuration
|
||
|
*/
|
||
|
const config = {
|
||
|
directories: {
|
||
|
output: 'dist',
|
||
|
buildResources: 'buildResources',
|
||
|
},
|
||
|
files: ['packages/**/dist/**'],
|
||
|
extraMetadata: {
|
||
|
version: process.env.VITE_APP_VERSION,
|
||
|
},
|
||
|
};
|
||
|
|
||
|
module.exports = config;
|