working on redoing ts and vite conf

This commit is contained in:
Logan Jones
2025-04-08 12:11:16 -05:00
parent d1857c4419
commit 8998c14954
8 changed files with 105 additions and 46 deletions
@@ -1,6 +1,5 @@
import { LitElement, html } from 'lit';
import { customElement } from 'lit/decorators.js';
import { Play } from '@go/player/Player';
import './controls/player-controls';
import './seekbar/seek-bar';
@@ -14,7 +13,7 @@ const audioPlayer = () => html`
@customElement('audio-player')
export class AudioPlayer extends LitElement {
render() {
override render() {
return audioPlayer();
}