aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/main.ts
blob: 352b565d9234b5ca2adce2bcb2c2aaed086bc69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import Vue from "vue";
import "@/assets/scss/global.scss";
import "@/plugins/fontawesome";
import "@/plugins/buefy";
import i18n from "@/plugins/i18n";
import router from "@/router";
import LdGallery from "@/views/LdGallery.vue";

Vue.config.productionTip = false;

new Vue({
  router,
  i18n,
  render: h => h(LdGallery),
}).$mount("#ldgallery");