馃帀 Try the public beta of the new docs site at algolia.com/doc-beta! 馃帀
UI libraries / Angular InstantSearch / Widgets

Angular InstantSearch isn鈥檛 compatible with Angular鈥檚 Ivy view engine. We鈥檙e investigating how best to support this. For more information and to vote for Algolia鈥檚 support of Angular 16 and beyond, see the GitHub issue Algolia Support for Angular InstantSearch

Signature
<ais-configure
  // Optional parameters
  [searchParameters]="object"
></ais-configure>
Import
1
2
3
4
5
6
7
8
import { NgAisConfigureModule } from 'angular-instantsearch';

@NgModule({
  imports: [
    NgAisConfigureModule,
  ],
})
export class AppModule {}

1. Follow additional steps in Optimize build size to ensure your code is correctly bundled.
2. This imports all the widgets, even the ones you don鈥檛 use. Read the Getting started guide for more information.

About this widget

The ais-configure widget lets you provide raw search parameters to the Algolia API without rendering anything.

Any attributes added to the searchParameters object is forwarded to Algolia. For more information on the different parameters that can be set, have a look at the reference.

Examples

1
2
3
<ais-configure
  [searchParameters]="{ hitsPerPage: 5, enablePersonalization: true }"
></ais-configure>

Props

Parameter Description
searchParameters
type: object

List of search parameters to enable when this widget renders.

1
2
3
<ais-configure
  [searchParameters]="{ hitsPerPage: 5, distinct: true, enablePersonalization: true }"
></ais-configure>

HTML output

This widget has no HTML output.

Did you find this page helpful?