mirror of
https://github.com/tabler/tabler.git
synced 2025-12-26 11:16:12 +04:00
css scripts, js scripts, remove gulp
This commit is contained in:
19
build/browsersync.js
Executable file
19
build/browsersync.js
Executable file
@@ -0,0 +1,19 @@
|
||||
const bs = require('browser-sync').create();
|
||||
|
||||
bs.init({
|
||||
watch: true,
|
||||
server: {
|
||||
routes: {
|
||||
"/": "tmp",
|
||||
"/dist": "dist",
|
||||
"/libs": "static/libs",
|
||||
"/img": "static/img",
|
||||
}
|
||||
},
|
||||
files: ["tmp/**/*", "dist/css/*.css", "dist/js/*.js"],
|
||||
watchOptions: {
|
||||
ignoreInitial: true
|
||||
},
|
||||
notify: false
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user