mirror of
https://github.com/LmeSzinc/AzurLaneAutoScript.git
synced 2025-01-09 09:57:43 +08:00
24 lines
596 B
JavaScript
24 lines
596 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;
|