12 lines
174 B
JavaScript
Executable file
12 lines
174 B
JavaScript
Executable file
const conf = require('./gulp.conf');
|
|
|
|
module.exports = function () {
|
|
return {
|
|
server: {
|
|
baseDir: [
|
|
conf.paths.dist
|
|
]
|
|
},
|
|
open: false
|
|
};
|
|
};
|