mirror of
https://github.com/locomotivemtl/locomotive-boilerplate.git
synced 2026-01-15 00:55:08 +08:00
20 lines
317 B
JavaScript
20 lines
317 B
JavaScript
module.exports = {
|
|
options: {
|
|
open : false,
|
|
proxy : 'localhost',
|
|
port : 3000,
|
|
watchTask : true,
|
|
notify : false
|
|
},
|
|
dev: {
|
|
bsFiles: {
|
|
src : [
|
|
'<%= paths.css.dist %>/**/*.css',
|
|
'<%= paths.js.dist %>/**/*.js',
|
|
'<%= paths.img.dist %>/**/*.svg',
|
|
'**/*.php'
|
|
]
|
|
}
|
|
}
|
|
};
|