start.js 256 Bytes
#!/usr/bin/env node
const path = require('path')
const execSync = require('child_process').execSync;

execSync(`npx cross-env NODE_ENV=development vite --force --config ${path.resolve(
  __dirname,
  "../config/vite.config.js"
)}`, { stdio: 'inherit' });