aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/main.ts
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r--viewer/src/main.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts
new file mode 100644
index 0000000..352b565
--- /dev/null
+++ b/viewer/src/main.ts
@@ -0,0 +1,15 @@
1import Vue from "vue";
2import "@/assets/scss/global.scss";
3import "@/plugins/fontawesome";
4import "@/plugins/buefy";
5import i18n from "@/plugins/i18n";
6import router from "@/router";
7import LdGallery from "@/views/LdGallery.vue";
8
9Vue.config.productionTip = false;
10
11new Vue({
12 router,
13 i18n,
14 render: h => h(LdGallery),
15}).$mount("#ldgallery");