11import { createRouter , createWebHistory } from "vue-router" ;
22
33import Home from "../pages/Home.vue" ;
4- import Install from "../pages/Install.vue" ;
54import Community from "../pages/Community.vue" ;
65import Support from "../pages/Support.vue" ;
76import Roadmap from "../pages/Roadmap.vue" ;
@@ -50,39 +49,18 @@ const routes = [
5049
5150 {
5251 path : "/install" ,
53- name : "install" ,
54- component : Install ,
55- meta : {
56- seo : {
57- title : "Install Vix.cpp" ,
58- description :
59- "Install Vix.cpp, create your first project, and start building native C++ applications." ,
60- path : "/install" ,
61- type : "website" ,
62- } ,
52+ redirect : ( ) => {
53+ window . location . href =
54+ "https://docs.vixcpp.com/getting-started/installation" ;
55+ return "/" ;
6356 } ,
6457 } ,
6558
6659 {
6760 path : "/roadmap" ,
68- name : "roadmap" ,
69- component : Roadmap ,
70- meta : {
71- seo : {
72- title : "Roadmap" ,
73- description :
74- "Explore the Vix.cpp roadmap: runtime direction, CLI improvements, modules, registry, tooling, and long-term platform goals." ,
75- path : "/roadmap" ,
76- type : "website" ,
77- jsonLd : {
78- "@context" : "https://schema.org" ,
79- "@type" : "WebPage" ,
80- name : "Vix.cpp Roadmap" ,
81- description :
82- "The public roadmap for Vix.cpp, covering runtime, CLI, modules, registry, tooling, and long-term platform direction." ,
83- url : "https://vixcpp.com/roadmap" ,
84- } ,
85- } ,
61+ redirect : ( ) => {
62+ window . location . href = "https://blog.vixcpp.com/posts/roadmap/" ;
63+ return "/" ;
8664 } ,
8765 } ,
8866
@@ -103,16 +81,9 @@ const routes = [
10381
10482 {
10583 path : "/about/releases" ,
106- name : "releases" ,
107- component : Releases ,
108- meta : {
109- seo : {
110- title : "Releases" ,
111- description :
112- "Read Vix.cpp release notes, version updates, and stability information." ,
113- path : "/about/releases" ,
114- type : "website" ,
115- } ,
84+ redirect : ( ) => {
85+ window . location . href = "https://blog.vixcpp.com/posts/changelog/" ;
86+ return "/" ;
11687 } ,
11788 } ,
11889
0 commit comments