From d35132d82d68acbbf83d95add7290f769d3b2436 Mon Sep 17 00:00:00 2001 From: Yoshie Muranaka Date: Wed, 11 Nov 2020 15:00:15 -0800 Subject: Update VuePress configuration We are moving away from importing application components directly into the VuePress docs. We will document code snippets and add screenshots as a visual example. This commit removes all code and configurations that supported importing dynamic components into VuePress and added images in place of a working component example on the page. Signed-off-by: Yoshie Muranaka Change-Id: I9a75c5d51de8b6d941e4df7ae977d78c043d36e1 --- docs/.vuepress/enhanceApp.js | 24 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 docs/.vuepress/enhanceApp.js (limited to 'docs/.vuepress/enhanceApp.js') diff --git a/docs/.vuepress/enhanceApp.js b/docs/.vuepress/enhanceApp.js deleted file mode 100644 index 6ff87759..00000000 --- a/docs/.vuepress/enhanceApp.js +++ /dev/null @@ -1,24 +0,0 @@ - -import "./styles/_index.scss"; -import Alert from "../../src/components/Global/Alert"; -import StatusIcon from "./components/app-imports/StatusIcon"; - -// Bootstrap-vue Plugin imports -import { - AlertPlugin, - ButtonPlugin, - TablePlugin, - ToastPlugin - } from 'bootstrap-vue'; - - -export default ({ Vue }) => { - Vue.use(AlertPlugin); - Vue.use(ButtonPlugin); - Vue.use(TablePlugin); - Vue.use(ToastPlugin); - - // BMC Components and Mixins - Vue.component('Alert', Alert); - Vue.component('StatusIcon', StatusIcon); -} \ No newline at end of file -- cgit v1.2.3