FE-Template/gulpfile.js/utils/browser-sync.js
2024-03-29 14:22:19 +07:00

8 lines
177 B
JavaScript

const browserSync = require('browser-sync');
const browserSyncInstance = browserSync.create();
browserSyncInstance.isStreaming = false;
module.exports = browserSyncInstance;