Skip to content

Commit

Permalink
make feature file to follow esm modules
Browse files Browse the repository at this point in the history
Signed-off-by: Shivam Gupta <[email protected]>
  • Loading branch information
ShivamCoder23 committed Jan 5, 2025
1 parent 146562f commit 8d98338
Showing 1 changed file with 9 additions and 7 deletions.
16 changes: 9 additions & 7 deletions gatsby-node.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@
* See: https://www.gatsbyjs.org/docs/node-apis/
*/

import path from "path";
import slugify from "./src/utils/slugify.js";
import { paginate } from "gatsby-awesome-pagination";
import { createFilePath } from "gatsby-source-filesystem";
import FilterWarningsPlugin from "webpack-filter-warnings-plugin";
import config from "./gatsby-config.js";
import { componentsData } from "./src/sections/Projects/Sistent/components/content.js";
const path = require("path");
const slugify = require("./src/utils/slugify");
const { paginate } = require("gatsby-awesome-pagination");
const { createFilePath } = require("gatsby-source-filesystem");
const FilterWarningsPlugin = require("webpack-filter-warnings-plugin");
const config = require("./gatsby-config");
const {
componentsData,
} = require("./src/sections/Projects/Sistent/components/content");

if (process.env.CI === "true") {
// All process.env.CI conditionals in this file are in place for GitHub Pages, if webhost changes in the future, code may need to be modified or removed.
Expand Down

0 comments on commit 8d98338

Please sign in to comment.