Use this tag of you are working with Scully, the opensource Jamstack toolchain built by HeroDevs and the community. https://scully.io
Questions tagged [scully]
30 questions
2
votes
3 answers
Running Scully in an Angular 15 Project?
I'm upgrading a Angular 12 project to an Angular 15 project and attempting to run scully on it again.
Before this worked fine.
ng add @scullyio/init --skip-confirmation --defaults
ng build
npx scully --
Now it produces this error:
…

Ole
- 41,793
- 59
- 191
- 359
2
votes
0 answers
Routes with trailing slash - Angular
I created an Angular 12 project with scully v2.1.32 and it was working on the server, using docker and nginx to serve.
However, when performing a performance test, there was always routing (301) of the route, related to trailing slash.
I followed…

RMartins
- 29
- 3
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
0 answers
Angular PreRender hide parts
I am using scully as pre-render for Angular web site.
Here is the scully config present at the root of the site:
import { ScullyConfig } from '@scullyio/scully';
/** this loads the default render plugin, remove when switching to something else.…

socialsnobbish
- 79
- 1
- 3
2
votes
0 answers
Scully can´t find empty route
Scully can´t find my app´s routes, is there something wrong with my routes?
I am on scully version 0.0.19
app.routing.ts looks like this:
export const routes: Routes = [
{
path: '',
loadChildren: () =>…

Alejandro Benavides
- 52
- 5
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
0 answers
Scully install fails with Puppeteer renderer
Following Scully install directions:
ng add @scullyio/init
for a basic Angular 14 application and getting:
TypeError: entry.message.split is not a function
at MapSubscriber.project…

James
- 389
- 2
- 17
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
0 answers
Error generating angular static html on pre-existing app with Scully
I've been trying to generate static HTML with Scully and I keep getting the same error. I've looked it up several times with no luck.
What can I do to make this work? If you need more information from me, please let me know and I will edit this page…

Sramirez
- 31
- 6
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
0 answers
running unit tests of schematics/scully
After having forked scully, running npm test from the root folder launches jest tests but doesn't launch the unit tests with jasmine under ./schematics/scully.
When running npm test from under ./schematics/scully, it doesn't work:
git clone…

atao
- 835
- 6
- 13
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
0 answers
Config file doesn't create after installation of scully
I created a new App Angular (version 16.1.8) and I installed Scully (version 2.1.41).
There was no error during the installation but the config file scully..config.ts wasn't created.
I open a issue an issue on the official…

Popovkov57
- 179
- 16