$app->get('/features/:feature/css/:path' , function ($feature, $path) use ($app) {
        // read the file if it exists. Then serve it back.
        $file = stream_resolve_include_path("features/{$feature}/assets/css/{$path}");
        if (!$file) {
            $app->response->status(404);