this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add updated config files by iles

+20 -5
+12
__unconfig_iles.config.ts
··· 1 + 2 + let __unconfig_data; 3 + let __unconfig_stub = function (data = {}) { __unconfig_data = data }; 4 + __unconfig_stub.default = (data = {}) => { __unconfig_data = data }; 5 + import { defineConfig } from "iles"; 6 + 7 + const __unconfig_default = defineConfig({ 8 + siteUrl: "https://juliencalixte.eu", 9 + modules: ["@islands/headings"], 10 + }); 11 + 12 + if (typeof __unconfig_default === "function") __unconfig_default(...[{"command":"serve","mode":"development"}]);export default __unconfig_data;
+8 -5
components.d.ts
··· 1 1 // generated by unplugin-vue-components 2 2 // We suggest you to commit this file into source control 3 - // Read more: https://github.com/vuejs/vue-next/pull/3399 3 + // Read more: https://github.com/vuejs/core/pull/3399 4 + import '@vue/runtime-core' 5 + 6 + export {} 4 7 5 - declare module 'vue' { 8 + declare module '@vue/runtime-core' { 6 9 export interface GlobalComponents { 7 10 AboutMe: typeof import('./src/components/presentation/AboutMe.vue')['default'] 8 11 AppHeader: typeof import('./src/components/AppHeader.vue')['default'] 9 12 BlogPosts: typeof import('./src/components/posts/BlogPosts.vue')['default'] 10 - Island: typeof import('./node_modules/.pnpm/iles@0.7.40_sass@1.53.0/node_modules/iles/dist/client/app/components/Island.vue')['default'] 13 + Island: typeof import('./node_modules/.pnpm/iles@0.8.5_sass@1.54.9/node_modules/iles/dist/client/app/components/Island.vue')['default'] 11 14 JulienCalixte: typeof import('./src/components/core/JulienCalixte.vue')['default'] 12 15 ProductionFlow: typeof import('./src/components/flow/ProductionFlow.vue')['default'] 16 + RouterLink: typeof import('vue-router')['RouterLink'] 17 + RouterView: typeof import('vue-router')['RouterView'] 13 18 Welcome: typeof import('./src/components/Welcome.vue')['default'] 14 19 } 15 20 } 16 - 17 - export { }