gerson
2024-09-07 03a0822c174d946036afcefb29f28d91b9c598b3
1
2
3
4
5
6
7
8
9
const { copyFile ,checkCustomer,firstCustomerName} = require('./helper');
const { execSync } = require('child_process');
checkCustomer('npm run dev', firstCustomerName);
 
copyFile();
 
try {
    execSync('vite', { stdio: 'inherit' });
} catch (error) {}