Skip to content
Snippets Groups Projects
Commit 2706fae5 authored by Manikanth Dindigala's avatar Manikanth Dindigala
Browse files

refactor: fixing the build

parent eada1d46
No related branches found
No related tags found
1 merge request!49fix: linking back to the url from where we came from
Pipeline #217838 passed
......@@ -2,3 +2,5 @@ node_modules
.vscode/settings.json
.DS_Store
.env.local
/dist
......@@ -90,10 +90,14 @@ export default {
{ title: 'Edition guidelines', to: '/editionguidelines.html' },
{ title: 'Related Literature', to: '/relatedliterature.html' },
],
origin:'',
}),
mounted(){
this.origin = window?.location?.origin;
},
computed:{
path(){
return window.location.origin + this.$route.path;
return this.origin + this.$route.path;
}
},
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment