Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/ff-concepts/adding-customization/cloud-functions.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
slug: /concepts/custom-code/custom-functions
slug: /concepts/custom-code/cloud-functions
title: Cloud Functions
description: Learn how to use Cloud Functions in your FlutterFlow app for serverless backend functionality.
tags: [FlutterFlow, Cloud Functions, Serverless, Integration]
Expand Down
1 change: 0 additions & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ hide_title: true
sidebar_label: Overview
slug: /
hide_table_of_contents: true

---

import InfoCard from '@site/src/components/InfoCard';
Expand Down
60 changes: 29 additions & 31 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,10 @@ const config: Config = {
blogSidebarTitle: 'FlutterFlow Blog',
blogSidebarCount: 'ALL'
},

gtag: {
trackingID: 'G-LC4SC6JY70',
anonymizeIP: true,
},
theme: {
customCss: './src/css/custom.css',
},
Expand Down Expand Up @@ -134,44 +137,39 @@ const config: Config = {
],
copyright: `Copyright © ${new Date().getFullYear()} FlutterFlow. Built with Docusaurus.`,
},
plugins: [
[
'@docusaurus/plugin-google-gtag',
{
trackingID: 'G-XXXXXXXXXX', // Your GA4 Measurement ID
anonymizeIP: true, // Optional: Anonymizes the IP address of the sender
},
],
],
// algolia: {
// // The application ID provided by Algolia
// appId: 'YOUR_APP_ID',

// // Public API key: it is safe to commit it
// apiKey: 'YOUR_SEARCH_API_KEY',
algolia: {
// The application ID provided by Algolia
appId: 'L5VTR6TWVD',

// Public API key: it is safe to commit it
apiKey: 'bab16fbb5188c4b49fad968ebc643dd3',

// indexName: 'YOUR_INDEX_NAME',
indexName: 'flutterflow--82026',

// // Optional: see doc section below
// contextualSearch: true,
// Optional: see doc section below
contextualSearch: true,

// // Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them.
// externalUrlRegex: 'external\\.com|domain\\.com',
// Optional: Specify domains where the navigation should occur through window.location instead on history.push. Useful when our Algolia config crawls multiple documentation sites and we want to navigate with window.location.href to them.
// externalUrlRegex: 'external\\.com|domain\\.com',

// // Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs
// replaceSearchResultPathname: {
// from: '/docs/', // or as RegExp: /\/docs\//
// to: '/',
// },
// Optional: Replace parts of the item URLs from Algolia. Useful when using the same search index for multiple deployments using a different baseUrl. You can use regexp or string in the `from` param. For example: localhost:3000 vs myCompany.com/docs
replaceSearchResultPathname: {
from: '/docs/', // or as RegExp: /\/docs\//
to: '/',
},

// // Optional: Algolia search parameters
// searchParameters: {},
// Optional: Algolia search parameters
searchParameters: {},

// // Optional: path for search page that enabled by default (`false` to disable it)
// searchPagePath: 'search',
// Optional: path for search page that enabled by default (`false` to disable it)
searchPagePath: 'search',

// //... other Algolia params
// },
// Optional: whether the insights feature is enabled or not on Docsearch (`false` by default)
insights: true,

//... other Algolia params
},
prism: {
theme: prismThemes.github,
darkTheme: prismThemes.dracula,
Expand Down
Loading