UNPKG

wix-style-react

Version:
12 lines (9 loc) 295 B
const express = require('express'); const app = express(); const port = 6006; const storybookPath = './storybook-static'; app .use('/', express.static(storybookPath)) .listen(6006, () => { console.log(`e2e sandbox running at http://localhost:${port}, serving ${storybookPath}`); });