Files
OverlayScrollbars/config/jest-browser.rollup.config.js
T
2021-01-25 00:47:15 +01:00

20 lines
314 B
JavaScript

const path = require('path');
module.exports = {
port: 8080,
root: path.join(__dirname, '../'),
build: '.build',
html: {
input: 'index.html',
output: 'build.html',
},
js: {
input: 'index.browser',
output: 'build',
},
dev: {
servePort: 18080,
livereloadPort: 28080,
},
};