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

13 lines
236 B
JavaScript

const server = require('./server');
module.exports = {
port: server.DEV_PORT,
proxy: `http://localhost:${server.STATIC_PORT}`,
ui: {
port: server.DASHBOARD_PORT,
},
open: true,
ghostMode: false,
logPrefix: 'SYNC',
};