18 questions
0
votes
1
answer
153
views
Particle JS is not working with SSR (Server Side Rendering) Angular and Scully
In my angular Application, I have added Scully for server side rendering. I have added particle JS to add animated particles as background of my component.
When I run scully npx scully, It creates ...
1
vote
0
answers
393
views
Rendering dynamic routes in AnalogJS without using a prefix or a folder?
In this question we were able to render dynamic routes with 2 or more parameters, but they have to be either prefixed or contained in a folder.
I'd like to be able to render a route like this, where :...
2
votes
3
answers
1k
views
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 -...
1
vote
1
answer
329
views
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/...
0
votes
1
answer
154
views
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 ...
3
votes
3
answers
1k
views
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 ...
0
votes
2
answers
163
views
Can't deploy Scully (Angular) app on AWS: 502 Bad Gateway
I'm trying to deploy Angular app with Scully on AWS but have just 502 error.
When I run just
npm run start
app is loading and content is, but there is no scully static seo content - I just got this
I ...
0
votes
2
answers
2k
views
No scully configuration file found scully.undefined.config.ts Path "/scully.undefined.config.ts" does not exist
When I created my Angular app and tried to add Scully for SEO static it just silently failed without creating:
scully.my-blog{{your blog name here}}.config.ts
scully folder in the root of the app ...
0
votes
1
answer
233
views
handleUnknownRoute using a subdirectory with Scully
In my Angular project I am using the following command to build the Angular project:
ng build --base-href='/mysubfolder/'
mysubfolder is the path from where the Angular site will be served i.e https:/...
2
votes
3
answers
1k
views
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: [&...
0
votes
0
answers
69
views
How scully decides when to render a member variable into HTML?
I'm curious how Scully decides whether to render a template variable directly into HTML, or not. From what I tested, a simple string variable is rendered directly, but a complex object wasn't rendered ...
2
votes
0
answers
384
views
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 ...
0
votes
1
answer
290
views
Scully static server won't serve urls with percent-encoded space
My angular app contains percent-encoded routes. Ex. /Page%201
When I run my angular app with ng serve everything works fine.
But when I start the Scully static server and visit
"http://localhost:...
1
vote
1
answer
1k
views
Type 'Subscription' is missing the following properties from type 'Subscription': _parentOrParents, _subscriptions
I am getting the above mentioned error with my angular ts file. but not able to understand to fix. any one help me
ts file :
import { Component, OnInit, OnDestroy } from '@angular/core';
import { ...
1
vote
1
answer
206
views
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 ...