sudo apt install zshsh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"cp public/.htaccess public/.htaccess_localvi /etc/httpd/conf/httpd.conf
add code bellow
AccessFileName .htaccess_localsystemctl restart httpd| /** | |
| * hide all elements specified | |
| * @example | |
| * hideElement(document.querySelectorAll('img')); // Hides all <img> elements on the page | |
| * @param {...any} el | |
| */ | |
| const hideElement = (...el) => | |
| [...el].forEach((e) => (e.style.display = "none")); | |
| /** |