From f2da5575c62cbfc7c880b0059362b558a9af5472 Mon Sep 17 00:00:00 2001 From: Jake Broughton Date: Thu, 1 Feb 2024 12:37:38 +0100 Subject: [PATCH] Add assetPrefix --- gatsby-config.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gatsby-config.js b/gatsby-config.js index fdfe48ac..ab66710c 100644 --- a/gatsby-config.js +++ b/gatsby-config.js @@ -1,6 +1,5 @@ const siteUrl = `https://summit.nextflow.io/2023/`; -const pathPrefix = `/2023`; -const path = require('path'); +const prefix = `/2023`; module.exports = { siteMetadata: { @@ -10,7 +9,8 @@ module.exports = { siteUrl: siteUrl, image: `/images/share-image.jpg`, }, - pathPrefix: pathPrefix, + pathPrefix: prefix, + assetPrefix: prefix, plugins: [ `gatsby-plugin-react-helmet`, {