mirror of
https://github.com/seigler/dash-visualizer
synced 2025-07-26 01:06:12 +00:00
16 lines
249 B
JavaScript
16 lines
249 B
JavaScript
module.exports = {
|
|
files: {
|
|
javascripts: {joinTo: 'bundle.js'},
|
|
stylesheets: {joinTo: 'bundle.css'},
|
|
},
|
|
plugins: {
|
|
browserSync: {
|
|
port: 3334,
|
|
logLevel: "debug"
|
|
}
|
|
},
|
|
server: {
|
|
run: true,
|
|
port: 3333
|
|
}
|
|
}
|