const Cookies = require("js-cookie"); console.log(Cookies); let title = '' let config = Cookies.get('GCLS_Config') if (config) { let configObj = JSON.parse(config); title = configObj.title } console.log(title); module.exports = { title: title, /** * @type {boolean} true | false * @description Whether fix the header */ fixedHeader: false, /** * @type {boolean} true | false * @description Whether show the logo in sidebar */ sidebarLogo: false }