Here is my typesense config for the react frontend...
# community-help
r
Here is my typesense config for the react frontend:
Copy code
const typesenseInstantSearchAdapter = new TypesenseInstantsearchAdapter({
  server: {
    apiKey: "",
    nodes: [
      {
        host: "",
        port: 443,
        protocol: "https",
      },
    ],
    connectionTimeoutSeconds: 3,
    numRetries: 3,
  },
  additionalSearchParameters: {
    query_by: "headline, title",
    query_by_weights: "5,3",
    
  },
  
});