26 lines
No EOL
561 B
TypeScript
26 lines
No EOL
561 B
TypeScript
import { reactive } from "vue";
|
|
|
|
export const settings = reactive({
|
|
ignoreCache: true,
|
|
//Leave empty to scan all interfaces
|
|
//or change item to "disabled" to disable interface scanning
|
|
interfaces_to_scan:[
|
|
"eth0"
|
|
],
|
|
enable_qemu_controls: true,
|
|
qemu_vms: [
|
|
{
|
|
name: "Gameserver",
|
|
os: "Ubuntu 24.04"
|
|
},
|
|
{
|
|
name: "Ubuntu_VM1",
|
|
os: "Ubuntu 24.04"
|
|
},
|
|
],
|
|
enable_services: true,
|
|
systemctl_services:[
|
|
"libvirt",
|
|
"frp"
|
|
]
|
|
}); |