vue/cli 应用程序是否有维护模式?

Are there maintenance-mode for vue/cli app?

我想知道是否为 vue/cli / bootstrap-vue project/vue-router / "vue-resource" 项目 以 laravel 6 作为后端 api 有一些商品 decisions/plugins 喜欢 laravel 中的维护模式,阻止所有具有公共消息的站点,并可能保留对某些页面(如管理区域)的访问权限?

谢谢!

我在后端应用程序中找到了关于服务器的决定 运行

php artisan down --message="Upgrading,,," --retry=60

并在客户端捕获 503 错误:

Vue.http.interceptors.push(function (request, next) {
    next(function (response) {
        if ( response.status === 503 ) {
           this.$router.push('/MaintenanceMessage') // maintenancePage
        }

...