major redesign and refactor

+ centralized urls
+ reduce max app width
+ bump up header height to 23rem
This commit is contained in:
geoffrey45
2022-09-15 12:36:30 +03:00
parent 69b8b17e84
commit 94eb198e47
17 changed files with 179 additions and 82 deletions
+2 -2
View File
@@ -1,5 +1,5 @@
import { paths } from "@/config";
import { Folder, Track } from "@/interfaces";
import state from "../state";
import useAxios from "./useAxios";
export default async function (path: string) {
@@ -9,7 +9,7 @@ export default async function (path: string) {
}
const { data, error } = await useAxios({
url: `${state.settings.uri}/folder`,
url: paths.api.folder,
props: {
folder: path,
},