ribbit/test/integration/dev-server.js
2026-05-15 15:18:31 -07:00

17 lines
358 B
JavaScript

var liveServer = require("live-server");
var params = {
port: 5023,
host: "0.0.0.0",
open: true,
root: "test/integration",
mount: [
['/static', 'dist/ribbit'],
],
logLevel: 2, // 0 = errors only, 1 = some, 2 = lots
};
console.log(`\n🐸 Ribbit dev server running on http://localhost:${params['port']}`);
liveServer.start(params);