Skip to content

Commit

Permalink
Fix: Configuración de baseUrl para GitHub Pages
Browse files Browse the repository at this point in the history
  • Loading branch information
GonzaloMedinaDev committed Nov 14, 2024
1 parent 5fbd4fa commit d1632cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ const config: Config = {
url: 'https://bigcartel.github.io',
// Set the /<baseUrl>/ pathname under which your site is served
// For GitHub pages deployment, it is often '/<projectName>/'
baseUrl: '/ctfl-documentation/',
baseUrl: process.env.NODE_ENV === 'production' ? '/ctfl-documentation/' : '/',

// GitHub pages deployment config.
// If you aren't using GitHub pages, you don't need these.
organizationName: 'Big Cartel', // Usually your GitHub org/user name.
projectName: 'docusaurus', // Usually your repo name.

trailingSlash: false,
onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'warn',

Expand Down

0 comments on commit d1632cb

Please sign in to comment.