9 lines
157 B
JavaScript
9 lines
157 B
JavaScript
|
|
export const server = (done) => {
|
||
|
|
app.plugins.browsersync.init({
|
||
|
|
server: {
|
||
|
|
baseDir: `${app.path.build.html}`
|
||
|
|
},
|
||
|
|
notify: false,
|
||
|
|
port: 3000,
|
||
|
|
});
|
||
|
|
}
|