Questions tagged [scullyio]

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.

scully.github

22 questions
0
votes
2 answers

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 with tsconfig.json and plugins folder with plugin.ts…
Tatyana Molchanova
  • 1,305
  • 5
  • 12
  • 23
0
votes
1 answer

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:/myotherdomain/mysubfolder myotherdomain == some…
0
votes
0 answers

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 (although it seemingly cached it). Any guidance…
Sanjay Verma
  • 1,390
  • 22
  • 40
0
votes
1 answer

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:1668/Page%201", the browser shows Cannot GET…
domrac
  • 61
  • 1
  • 6
0
votes
1 answer

Scullyio - How to get Angular Material theme(CSS) also to be rendered in the Static Index.html file after build?

I created an Angular 10 project and integrated angular Scully into it using ng add @scullyio/init command. I am using the Angular Material library for toolbars, navbar, buttons, etc. Now after I build the Angular project using ng build --prod, I ran…
0
votes
1 answer

Deploy Scully Static Folder with angular-cli-ghpages?

Scully generates the project to project/dist/static. How do we deploy that instead of project/dist/project-name with angular-cli-ghpages?
Ole
  • 41,793
  • 59
  • 191
  • 359
0
votes
1 answer

import module in Angular and get error from Scully

I try to use Scully in my Angular project. In Angular, I have some Modules and I have to import in order to use. But When I try to run with Scully npm run scully --scanRoutes --showGuessError it show this error belongs to more than one module: PS…
Tùng Bill
  • 129
  • 1
  • 3
  • 12
1
2