Fix audio playback

environments/review-front-deve-otr6gc/deployments/13419
wvffle 2022-07-21 13:24:12 +00:00 zatwierdzone przez Georg Krause
rodzic b8f5f5d6ef
commit 951d339904
3 zmienionych plików z 2 dodań i 8 usunięć

Wyświetl plik

@ -5,7 +5,7 @@ COPY package.json yarn.lock /app/
COPY src /app/src/
COPY scripts /app/scripts
COPY public /app/public
COPY vite.config.js index.html embed.html /app/
COPY vite.config.ts index.html embed.html /app/
RUN apk add --no-cache jq bash coreutils python3 build-base
RUN yarn install

Wyświetl plik

@ -8,6 +8,7 @@ import axios from 'axios'
import usePlayer from '~/composables/audio/usePlayer'
import useQueue from '~/composables/audio/useQueue'
import { useCurrentElement } from '@vueuse/core'
import jQuery from 'jquery'
export interface PlayOptionsProps {
isPlayable?: boolean

Wyświetl plik

@ -9,13 +9,6 @@ import type { ComponentPublicInstance } from '@vue/runtime-core'
export type FunctionRef = Element | ComponentPublicInstance | null
declare global {
interface Window {
$: JQueryStatic
jQuery: JQueryStatic
}
}
// App structure stuff
export interface InitModuleContext {
app: App