mirror of
https://github.com/legop3/MultiRoombaRover.git
synced 2026-09-16 01:21:20 -04:00
7 lines
144 B
JavaScript
7 lines
144 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
port: process.env.PORT || 8080,
|
|
staticDir: path.join(__dirname, '..', '..', 'public'),
|
|
};
|