Ktor Server + Vue single page application
I'm trying to create a REST API with panel admin. I have no problem with the API, but I have no idea on how to integrate Vue into the project. I can't find any example, the only example from ktor doc is with a react-app. I don't know how the vue package should be.
In ktor I have that:
routing {
singlePageApplication {
vue("vue-test")
defaultPage = "public/index.html"
}
}
And vue-test is a project created with WebStorm. I only copied it in the...