Scully pre-renders each page in your app to plain HTML & CSS. To do this, Scully uses machine learning techniques to find all of the routes in your project. Scully then visits each route, rendering the view and saving it to an HTML file.
Questions tagged [scullyio]
22 questions
4
votes
0 answers
Ionic web components and Angular app and static prerendering
I created a simple Ionic 5 / Angular 9 Project.
Then used www.scully.io to do static pages prerendering.
It worked well as I can see prerendered html inside generated index.html
The issue is that every ionic web component is a custom web-component…

Sergey Rudenko
- 8,809
- 2
- 24
- 51
2
votes
1 answer
Scully isn't generating config.ts file in Angular project
I have a basic portfolio I'm building in Angular. I've successfully added Scully to the node_modules directory by running ng add @scullyio/init@2.0.0.
I'm using Scully for the first time, but everything I'm reading on it says a config.ts file is…

brian
- 51
- 6
2
votes
3 answers
Scully prerender - Cannot GET dynamic route
I'm using scully for prerendering bunch of routes, and I skip routes for /board/:boardId:
routes: {
"/board": {
type: 'ignored'
}
},
extraRoutes: ["/",
"/dashboard",
"/uses"
]
The /board…

Sanjay Verma
- 1,390
- 22
- 40
2
votes
2 answers
Telling Scully to Ignore Static Page Generation for a Route?
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…

Ole
- 41,793
- 59
- 191
- 359
1
vote
1 answer
Scully.io Prerenders only ROOT route as static file but does not prerender ANY other routes
We have set up of entire Angular 14.2.12 application in Production working just fine. I wanted to generate some of static pages using Scully, so I added Scully by following steps
ng add @scullyio/init
This installed scully in my project
Then, I…

user2030613
- 93
- 1
- 9
1
vote
3 answers
Issue with Angular pre-rendering with universal & Scully for SEO
I recently developed and published my first large angular project (I am still relatively new to angular). For better SEO I decided to look into static prerendering using both Scully and Angular Universal, both have one critical issue, so google…

ahmed
- 421
- 6
- 13
1
vote
1 answer
Putting extraRoutes in separate file for multiple configuration in Scully results in importerror
I have multiple scully configurations:
scully.en.config.ts
scully.de.config.ts
The scully config has a extraRoutes fields which is same for all the configs. I want to put the extraRoutes in a new file extraRoutes.ts.
export const extraRoutes = [
…

desertSniper87
- 795
- 2
- 13
- 25
1
vote
1 answer
Basic Angular ng
I'm trying to get scullyio to work on a real basic ng new build. Out of the box skeleton. Steps as follows -
Installed @angular/cli.
Ran ng new scully
Ran ng build --prod
Ran npm run scully
but continually get:
> scully@0.0.0 scully
> npx scully…

Brett Connell
- 11
- 1
1
vote
1 answer
Using web components with Scully?
I built an that app loads dynamic content and renders it through Scully. The content has web components like this in it:
Content selection dialog that looks like this:

Ole
- 41,793
- 59
- 191
- 359
1
vote
1 answer
styling Markdown in Angular
I am using right now Angular and Scully
I want to add style to the in markdown file in Angular. But I have no idea how to do it.
The img right now is too big.
Can someone give me advices?
Please take a look at those pictures below.

Tùng Bill
- 129
- 1
- 3
- 12
1
vote
1 answer
How to make scully.io work on github pages?
I'm trying to add scully to my portfolio hosted on github pages. When I'm disabling javascript in the browser, everything stops working (website is not rendered at all). Github requires all deployable files to be in /docs folder, I've put all my…

K.W.
- 59
- 1
- 10
1
vote
1 answer
How to prevent Angular from loading content in runtime when it was already prerendered by Scully?
I have a service that fetches data from headless CMS Cockpit in my Angular app. I am using Scully to prerender my pages. It works great in doing the prerender, it fetches content build time and creates a static page, however when opening page,…

Blind Despair
- 3,190
- 2
- 20
- 31
0
votes
1 answer
Scully (Puppeteer) can't find browser. But the neigbhor project with the same configs working well
When I copy some Scully boilerplate project, I'm starting to change the name of project, and so on. I don't copy node-modules to make copying of project a bit lighter. But after installation of node_modules, Scully refuse to work, with…

Yuriy Gyerts
- 1,464
- 18
- 30
0
votes
0 answers
Set ScullyConfig routes from HTTP request
I'm trying to config Scully on my Angular app, and get it the list of routes,
But I want to fetch the list of routes from the server.
export const config: ScullyConfig = {
projectRoot: "./src",
projectName: "marketing-site-web",
outDir:…

Eli Porush
- 1,339
- 1
- 7
- 18
0
votes
0 answers
Scully doesn't generate static files for blog-list component
I'm trying to develop a blog with Scully. There are 3 routes. Homepage, Blog page and dynamic Blog Post page. Scully generate static content for homepage and blog post pages. It does not produce for the blog page.
Here is the config and route…

Mustafa Balcı
- 1
- 1