added rooms and recorders to fe
This commit is contained in:
16
src/main.ts
16
src/main.ts
@@ -12,23 +12,25 @@ import i18n from '@/plugins/i18n';
|
||||
import VeeValidate from 'vee-validate';
|
||||
// @ts-ignore
|
||||
import FlagIcon from 'vue-flag-icon';
|
||||
// @ts-ignore
|
||||
import VueMoment from 'vue-moment';
|
||||
// following is to avoid missing type definitions
|
||||
// const FlagIcon = require('vue-flag-icon');
|
||||
|
||||
import { library } from '@fortawesome/fontawesome-svg-core';
|
||||
import { faCoffee, faTrash, faPencilAlt } from '@fortawesome/free-solid-svg-icons';
|
||||
import { faCoffee, faPlus, faScroll, faCircle, faList, faTrash, faPencilAlt } from '@fortawesome/free-solid-svg-icons';
|
||||
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
||||
|
||||
|
||||
//import 'bootstrap';
|
||||
//import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
// import 'bootstrap';
|
||||
// import 'bootstrap/dist/css/bootstrap.min.css';
|
||||
|
||||
import 'bootstrap/dist/css/bootstrap.css'
|
||||
import 'bootstrap-vue/dist/bootstrap-vue.css'
|
||||
import 'bootstrap/dist/css/bootstrap.css';
|
||||
import 'bootstrap-vue/dist/bootstrap-vue.css';
|
||||
|
||||
const isProduction = process.env.NODE_ENV === 'production';
|
||||
|
||||
library.add(faCoffee, faTrash, faPencilAlt);
|
||||
library.add(faCoffee, faTrash, faPencilAlt, faScroll, faCircle, faList, faPlus);
|
||||
|
||||
Vue.component('font-awesome-icon', FontAwesomeIcon);
|
||||
|
||||
@@ -50,6 +52,8 @@ Vue.use(FlagIcon);
|
||||
Vue.use(VueCookies);
|
||||
Vue.use(VueSweetalert2);
|
||||
Vue.use(VeeValidate);
|
||||
Vue.use(VueMoment);
|
||||
|
||||
|
||||
// setup fake backend
|
||||
// import { configureFakeBackend } from './helpers';
|
||||
|
||||
Reference in New Issue
Block a user