2023-09-01 23:59:22 +00:00
|
|
|
import htmx from 'htmx.org';
|
|
|
|
|
2023-09-02 18:01:18 +00:00
|
|
|
// import assets so they get named with a content hash that busts caches
|
2023-09-01 05:05:06 +00:00
|
|
|
import '../css/styles.css';
|
2023-06-29 04:34:09 +00:00
|
|
|
|
2023-09-01 05:05:06 +00:00
|
|
|
import './localTimeController';
|
2023-09-01 23:59:22 +00:00
|
|
|
|
|
|
|
declare global {
|
|
|
|
interface Window {
|
|
|
|
htmx: typeof htmx;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
window.htmx = htmx;
|
2023-09-02 18:01:18 +00:00
|
|
|
|
|
|
|
// eslint-disable-next-line import/first
|
|
|
|
import 'htmx.org/dist/ext/sse';
|