Zumrad

Results 4 comments of Zumrad

Actually, I just did by "yarn add esm". Then had an issue with the imported js file to nuxt.config.js cause it was considering the import of the js file as...

My temporary solution is this: Just hiding it for a certain page ```javascript onMounted(() => { setTimeout(() => { const loadingIndicator = document.querySelector('.nuxt-loading-indicator'); if (loadingIndicator) { loadingIndicator.classList.add('!opacity-0') } }, 1000);...

Ahah yeah I've 3.9.0. Did not pay attention Thanks)