How do i link/redirect to a html page that has it own cdn in vue.js These html page are some old project that i made in the past that i want to link to. I have only install the webpack-simple and vue-router.
<div id="navMenu">
<ul>
<li class="project">
<a :href="publicPath + 'project/projectOne/drone.html'">Drone</a>
</li>
</ul>
</div>
The script
<script>
export default {
data () {
return {
publicPath: process.env.BASE_URL
}
},
methods:{
}
}
</script>
<a href="...">to link to static assets outside of Vue.publicfolder: cli.vuejs.org/guide/…)