-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* parse markdown content * type * fix * next folder * revert * test * export * rename * working nav * wip homepage * delete old images * delete old files * update scss * fix errors * Update src/app/components/Footer.tsx Co-authored-by: Jake Wheeler <[email protected]> * Update src/app/components/Footer.tsx Co-authored-by: Jake Wheeler <[email protected]> * Update src/app/components/NavbarUSWDS.tsx Co-authored-by: Jake Wheeler <[email protected]> * updates based on comments * prettier * basepath * adjust links --------- Co-authored-by: Jake Wheeler <[email protected]>
- Loading branch information
1 parent
cd5afbf
commit d0e363d
Showing
69 changed files
with
3,622 additions
and
298 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
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 @@ | ||
npx lint-staged |
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,3 @@ | ||
# Ignore artifacts: | ||
build | ||
coverage |
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 @@ | ||
{} |
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,4 +1,4 @@ | ||
const normalizeSrc = (src) => src[0] === '/' ? src.slice(1) : src | ||
const normalizeSrc = (src) => (src[0] === "/" ? src.slice(1) : src); | ||
export default function akamaiLoader({ src, width, quality }) { | ||
return '/' + normalizeSrc(src) + '?imwidth=' + width | ||
} | ||
return "/" + normalizeSrc(src) + "?imwidth=" + width; | ||
} |
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,21 @@ | ||
const path = require("path"); | ||
|
||
/** | ||
* @type {import('next').NextConfig} | ||
*/ | ||
const nextConfig = { | ||
output: "export", | ||
reactStrictMode: true, | ||
swcMinify: true, | ||
images: { | ||
loader: "custom", | ||
loaderFile: "./akamai-loader.js", | ||
}, | ||
basePath: "/dibbs-site", | ||
assetPrefix: "/dibbs-site", | ||
sassOptions: { | ||
includePaths: [path.join(__dirname, "styles")], | ||
}, | ||
}; | ||
|
||
module.exports = nextConfig; |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.