3
votes
  • I want to serve different vue pages from server by different routes. For now I'm using only one route (/static) to serve vue files for one "page" that contains vue-router.


  • I can't go one like this because the application should use cookies to verify access rights to different pages.


How can I accomplish this without using browser cache ?

2

2 Answers

2
votes
1
votes

Found the solution for me. Unfortunately not a build in one. I just ran build process for two different builds with two different webpack configs which in their turn have different entry and output properties. Just in case someones find this helpful.