fluxy-bot 0.3.16 → 0.3.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/supervisor/index.ts +1 -0
package/package.json
CHANGED
package/supervisor/index.ts
CHANGED
|
@@ -150,6 +150,7 @@ export async function startSupervisor() {
|
|
|
150
150
|
|
|
151
151
|
// HTTP server — proxies to Vite dev servers + worker API
|
|
152
152
|
const server = http.createServer(async (req, res) => {
|
|
153
|
+
if (req.method === 'POST') console.log(`[supervisor] POST received: ${req.url}`);
|
|
153
154
|
// Fluxy widget — served directly (not part of Vite build)
|
|
154
155
|
if (req.url === '/fluxy/widget.js') {
|
|
155
156
|
console.log('[supervisor] Serving /fluxy/widget.js directly');
|