diff --git a/vite.config.js b/vite.config.js index 07aa344..071095a 100644 --- a/vite.config.js +++ b/vite.config.js @@ -5,7 +5,7 @@ import { execSync } from 'node:child_process' const currentCommit = execSync("git rev-parse --short HEAD").toString(); const date = new Date(); -const dateString = `${date.getFullYear()}.${date.getMonth()}.${date.getDate()}`; +const dateString = `${date.getFullYear()}.${date.getMonth() + 1}.${date.getDate()}`; // https://vitejs.dev/config/