mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-02-18 00:02:02 +03:00
fix: phone check shutdown modal
This commit is contained in:
parent
f0ddc603bd
commit
ff9f1594cd
3 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<template>
|
||||
<v-dialog v-model="dialog" scrollable max-width="750px" :content-class="isPhone ? 'rounded-0' : 'rounded-form'" :fullscreen="isPhone">
|
||||
<v-dialog v-model="dialog" scrollable max-width="750px" :content-class="phoneLayout ? 'rounded-0' : 'rounded-form'" :fullscreen="false">
|
||||
<v-card>
|
||||
<v-card-title class="pa-0">
|
||||
<v-toolbar-title class="ma-4 primarytext--text">
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"lib": ["WebWorker", "DOM"],
|
||||
"module": "esnext",
|
||||
"moduleResolution": "node",
|
||||
"experimentalDecorators": true,
|
||||
"paths": {
|
||||
"@/*": ["src/*"]
|
||||
},
|
||||
|
|
|
@ -121,6 +121,8 @@ export default defineConfig(({ command, mode }) => {
|
|||
extensions: ['.js', '.json', '.jsx', '.ts', '.tsx', '.vue']
|
||||
},
|
||||
server: {
|
||||
host: '0.0.0.0',
|
||||
port: 3000,
|
||||
proxy: {
|
||||
'/api': `${proxyTarget}:${qBittorrentPort}`
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue