feat: mostly reproduce old Nuxt website's content

Signed-off-by: Lucien Cartier-Tilet <lucien@phundrak.com>
This commit is contained in:
2023-01-31 18:13:33 +01:00
parent 446a6f18e0
commit 23f30a9cb3
21 changed files with 1185 additions and 3 deletions

13
.vuepress/client.ts Normal file
View File

@@ -0,0 +1,13 @@
import { defineClientConfig } from '@vuepress/client';
import PreviewImage from './components/PreviewImage.vue';
import ResponsiveImage from './components/ResponsiveImage.vue';
export default defineClientConfig({
enhance({ app, router, siteData }) {
app.component('PreviewImage', PreviewImage);
app.component('ResponsiveImage', ResponsiveImage);
},
setup() {},
layouts: {},
rootComponents: [],
});