WIP: modify dev server to use as test server, also

This commit is contained in:
2025-06-16 22:41:31 -07:00
parent c424c1fef2
commit 2dfd5cdac3
4 changed files with 89 additions and 58 deletions

View File

@@ -2,7 +2,7 @@ console.log('\nSpawning server process...');
const { spawn } = require('child_process');
module.exports = async function (globalConfig, projectConfig) {
const child = spawn('node', ['server.cjs']);
const child = spawn('node', ['esbuild-server.mjs']);
child.stdout.on('data', (data) => {
console.log(`${data}`);