2019-09-24 19:56:23 -03:00
|
|
|
import './styles/index.scss';
|
|
|
|
|
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core';
|
|
|
|
import { faDownload } from '@fortawesome/free-solid-svg-icons';
|
|
|
|
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
|
2019-11-13 16:40:24 +01:00
|
|
|
import { VueAgile } from 'vue-agile'
|
2019-09-24 19:56:23 -03:00
|
|
|
|
|
|
|
library.add(faDownload);
|
2019-09-17 20:17:47 -03:00
|
|
|
|
|
|
|
export default ({
|
|
|
|
Vue, // the version of Vue being used in the VuePress app
|
|
|
|
options, // the options for the root Vue instance
|
|
|
|
router, // the router instance for the app
|
|
|
|
siteData // site metadata
|
2019-09-24 19:56:23 -03:00
|
|
|
}) => {
|
|
|
|
Vue.component('font-awesome-icon', FontAwesomeIcon);
|
2019-11-13 16:40:24 +01:00
|
|
|
Vue.component('agile', VueAgile)
|
2019-09-24 19:56:23 -03:00
|
|
|
};
|