iteck-gatsby-nextream-web/gatsby-config.js
2024-10-13 23:49:55 -07:00

26 lines
805 B
JavaScript

module.exports = {
siteMetadata: {
title: 'Nextream',
description: 'Nextream - Tech & IT Solutions',
author: 'Nextream.net',
},
plugins: ['gatsby-plugin-resolve-src', 'gatsby-plugin-eslint',
{
resolve: `gatsby-plugin-intl`,
options: {
// language JSON resource path
path: `${__dirname}/src/intl`,
// supported language
languages: [`en`, `es`],
// language file path
defaultLanguage: `es`,
// option to redirect to `/ko` when connecting `/`
redirect: true,
// Utilizar la URL del recurso JSON de idioma desde las variables de entorno
remoteJsonUrl: `http://localhost:8000/data/language/languages.json`,
},
},
],
trailingSlash: 'always',
};