This commit is contained in:
2026-06-25 12:30:55 -05:00
parent f31fcd9e84
commit 8c60e154a7
13 changed files with 1163 additions and 13 deletions

View File

@@ -5,9 +5,6 @@ if (fs.existsSync('dist/index.html')) {
process.exit(0);
}
const result = spawnSync('npm', ['run', 'build'], {
stdio: 'inherit',
shell: process.platform === 'win32'
});
const result = spawnSync(process.execPath, ['node_modules/vite/bin/vite.js', 'build'], { stdio: 'inherit' });
process.exit(result.status ?? 1);