location ^~ /constructor {
        if (...) {
        }
        try_files ...;
}map $platform $front_path {
    default   /home/www/redesigned_spa_desktop/dist;
    mobile    /home/www/redesigned_spa/dist;
}
server {
        location ^~ /constructor {
                alias $front_path;
                try_files $uri /constructor/index.html;
        }