2023-01-31 18:13:33 +01:00
|
|
|
import { defineClientConfig } from '@vuepress/client';
|
|
|
|
|
import PreviewImage from './components/PreviewImage.vue';
|
|
|
|
|
import ResponsiveImage from './components/ResponsiveImage.vue';
|
2023-05-04 23:21:43 +02:00
|
|
|
import LatestRepositories from './components/LatestRepositories.vue';
|
2023-01-31 18:13:33 +01:00
|
|
|
|
|
|
|
|
export default defineClientConfig({
|
|
|
|
|
enhance({ app, router, siteData }) {
|
|
|
|
|
app.component('PreviewImage', PreviewImage);
|
|
|
|
|
app.component('ResponsiveImage', ResponsiveImage);
|
2023-05-04 23:21:43 +02:00
|
|
|
app.component('LatestRepositories', LatestRepositories);
|
2023-01-31 18:13:33 +01:00
|
|
|
},
|
|
|
|
|
setup() {},
|
|
|
|
|
layouts: {},
|
|
|
|
|
rootComponents: [],
|
|
|
|
|
});
|