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