Switch all JS imports to absolute paths

This commit is contained in:
Keavon Chambers
2021-07-15 00:34:56 -07:00
parent 64050bc8b3
commit 98f1b123bb
21 changed files with 157 additions and 157 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
import { createApp } from "vue";
import { fullscreenModeChanged } from "@/utilities/fullscreen";
import { handleKeyUp, handleKeyDown } from "@/utilities/input";
import App from "./App.vue";
import App from "@/App.vue";
// Bind global browser events
document.addEventListener("contextmenu", (e) => e.preventDefault());