This repository has been archived by the owner on Dec 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added Quota Docs for #17 - Added Schema Docs for #16 - Added Progressive Web App support - Added note for how to use search on home page for #9 - Added Sitemap Generator to Build Script - Added some cleanup to generator scripts to remove old folders before recreating ( cause of #10 ) - Fixed #10 where incorrect URLs were showing up in search results - Fixed #11 Mobile Menu Filter page tap issue - Fixed #12 Mobile Menu Overscroll - Fixed #13 Page Scroll resetting - Fixed #14 where Mobile Active Link was not scrolled into viewport - Fixed #18 where scrolling issue was causing iPad devices to scroll search off screen - Started support for #15 that wants Offline Doc support ( getting PWA setup first was key )
- Loading branch information
1 parent
ff19639
commit e047e54
Showing
46 changed files
with
4,151 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
SELECTED_VERSION="23.8" | ||
SITE_URL="https://sfccdocs.com" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ audit=false | |
fund=false | ||
loglevel=error | ||
legacy-peer-deps=true | ||
enable-pre-post-scripts=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
import 'dotenv/config' | ||
|
||
/** @type {import('next-sitemap').IConfig} */ | ||
export default { | ||
siteUrl: process.env.SITE_URL || 'https://sfccdocs.com', | ||
generateRobotsTxt: true, | ||
sitemapSize: 1000, | ||
changefreq: 'weekly', | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.