# Optimizations

## Syntax File

```scss
 // ./src/syntax/_syntax.scss
 
 ... other code
 //optimizations
    lazy-load : false, // true of false
... other code
```

## Lazy Load

```scss
// Lazy Loading Optimization
// Define lazy load content visibility
.lazy-load {
  content-visibility: auto; // 'content-visibility' is not supported by Firefox, Firefox for Android.
}

// Define no lazy load content visibility
.no-lazy-load {
  content-visibility: visible; // 'content-visibility' is not supported by Firefox, Firefox for Android.
}
```

With **`.lazy-load`** class you can add lazy loading to your content&#x20;

But if you don't want it then do not worry , just add **`.no-lazy-load`** class and remove this optimization ........


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://nextgencss.gitbook.io/untitled/quick-start/optimizations.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
