base/src/index.js

21 lines
539 B
JavaScript
Raw Normal View History

// src/index.js
import '@apigo.cc/bootstrap'
import './ui.js'
import './http.js'
import './form.js'
import './list.js'
import './interaction.js'
import './controls.js'
import './nav.js'
// Additional global helpers or initializations for base can go here
if (typeof document !== 'undefined') {
// Example: global listener for exitBlocks
window.addEventListener('beforeunload', (event) => {
if (globalThis.State?.exitBlocks > 0) {
event.preventDefault();
event.returnValue = '';
}
});
}