Необходимо реализовать такой роутинг через NGINX
/a/*(user dashboard, SPA/Vue.js)/*(все кроме/a/*тулит на proxy pass в Nuxt SSR)
Конфиг NGINX'a
map $sent_http_content_type $expires {
"text/html" epoch;
Organizing your Go (Golang) project's folder structure can help improve code readability, maintainability, and scalability. While there is no one-size-fits-all structure, here's a common folder structure for a Go project:
project-root/
├── cmd/
│ ├── your-app-name/
│ │ ├── main.go # Application entry point
│ │ └── ... # Other application-specific files