mirror of
https://github.com/tenrok/OverlayScrollbars.git
synced 2026-06-05 12:12:27 +03:00
20 lines
314 B
JavaScript
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,
|
|
},
|
|
};
|