change config extension

This commit is contained in:
jb-alvarado 2024-05-10 08:23:51 +02:00
parent d07e284ba7
commit b4f116caf1
4 changed files with 524 additions and 1356 deletions

View File

@ -97,7 +97,7 @@ async function addChannel() {
newChannel.id = channels.length + 1
newChannel.name = `Channel ${Math.random().toString(36).substring(7)}`
newChannel.config_path = `${playoutConfigPath}${confName}.yml`
newChannel.config_path = `${playoutConfigPath}${confName}.toml`
newChannel.service = `ffplayout@${confName}.service`
channels.push(newChannel)

View File

@ -49,10 +49,10 @@ export default defineNuxtConfig({
modules: [
'@nuxt/eslint',
'@nuxtjs/color-mode',
'@nuxtjs/tailwindcss',
'@nuxtjs/i18n',
'@pinia/nuxt',
'@vueuse/nuxt',
'@nuxtjs/tailwindcss',
],
css: ['@/assets/scss/main.scss'],
@ -136,4 +136,4 @@ export default defineNuxtConfig({
experimental: {
payloadExtraction: false,
},
})
})

1866
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{
"name": "ffplayout-frontend",
"version": "0.9.0",
"version": "0.9.1",
"description": "Web GUI for ffplayout",
"author": "Jonathan Baecker",
"private": true,
@ -29,14 +29,12 @@
"video.js": "^8.12.0"
},
"devDependencies": {
"@nuxt/eslint": "^0.3.10",
"@nuxt/eslint": "^0.3.12",
"@nuxtjs/i18n": "^8.3.1",
"@nuxtjs/tailwindcss": "^6.12.0",
"@types/lodash": "^4.17.1",
"@types/video.js": "^7.3.58",
"daisyui": "^4.10.5",
"eslint": "^8.57.0",
"eslint-plugin-nuxt": "^4.0.0",
"daisyui": "^4.11.1",
"postcss": "^8.4.38",
"postcss-loader": "^8.1.1",
"sass": "^1.77.0",