chore: add development start script

- Introduced a new script in dev.startscript.js to execute the development server using pnpm for streamlined local development.
This commit is contained in:
yoosangwook 2025-06-12 15:33:28 +09:00
parent 7c724f2430
commit f8d1cb54b6

2
dev.startscript.js Normal file
View File

@ -0,0 +1,2 @@
var exec = require('child_process').exec
exec('pnpm run start:dev', { windowsHide: true })