[Fixed] Telling Scully to Ignore Static Page Generation for a Route?

Issue

Suppose we have the following routes defined:

const routes: Routes = [
  {
    path: '',
    component: WelcomeComponent
  },  
  {
    path: 'start',
    component: StartComponent
  }

Is the a way to tell Scully to skip generation fo a static page for the start route?

Solution

You can do this by using the ignoredRoutePlugin.

`/someRoute`:{
  type:'ignored'
}

It doesn’t look like it’s in the documentation yet but here is the code in the repo: https://github.com/scullyio/scully/blob/main/libs/scully/src/lib/routerPlugins/ignoredRoutePlugin.ts

Leave a Reply

(*) Required, Your email will not be published