- Adds a new `start:btob` script to `package.json` for launching the Next.js application on port 5060 for the BtoB environment. - Introduces `startscript-btob.js` as a convenience executable to run the `start:btob` command.
3 lines
88 B
JavaScript
3 lines
88 B
JavaScript
var exec = require('child_process').exec
|
|
exec('yarn start:btob', { windowsHide: true })
|