Skip to content
Open
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 .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v22.13.1
v24.13.0
3,280 changes: 3,280 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

20 changes: 2 additions & 18 deletions gatsby-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,11 @@ const config: GatsbyConfig = {
},
__key: "images"
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "technologies",
"path": "./src/images/technologies"
},
__key: "technologies"
},
{
resolve: 'gatsby-source-filesystem',
options: {
"name": "team",
"path": "./src/images/team"
},
__key: "team"
},
{
resolve: 'gatsby-plugin-google-fonts',
options: {
fonts: [
"poppins:100,200,300,400,500,600,700,800,900:latin,latin-ext",
"geologica:100,200,300,400,500,600,700,800,900:latin,latin-ext",
],
display: "swap",
}
Expand All @@ -50,7 +34,7 @@ const config: GatsbyConfig = {
short_name: "SAIB Inc.",
start_url: "/",
display: "standalone",
icon: "src/images/saib-icon.svg",
icon: "src/images/icons/saib-icon.svg",
crossOrigin: `use-credentials`,
},
}
Expand Down
16 changes: 16 additions & 0 deletions gatsby-node.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { GatsbyNode } from "gatsby";

export const onCreateWebpackConfig: GatsbyNode["onCreateWebpackConfig"] = ({
actions,
getConfig,
}) => {
const config = getConfig();

// Remove ESLint plugin - we run ESLint separately
config.plugins = config.plugins.filter(
(plugin: { constructor: { name: string } }) =>
plugin.constructor.name !== "ESLintWebpackPlugin"
);

actions.replaceWebpackConfig(config);
};
Loading