mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-05-30 08:04:08 +03:00
8 lines
215 B
JavaScript
8 lines
215 B
JavaScript
const express = require('express');
|
|
const deploymentConfig = require('./jest-puppeteer.rollup.config.js');
|
|
|
|
const app = express();
|
|
|
|
app.use(express.static(deploymentConfig.root));
|
|
app.listen(deploymentConfig.port);
|