regexper-static/gatsby-config.js

17 lines
389 B
JavaScript
Raw Normal View History

const buildId = [
process.env.CI_COMMIT_REF_SLUG || 'prerelese',
(process.env.CI_COMMIT_SHA || 'gitsha').slice(0, 7)
].join('-');
const banner = (process.env.NODE_ENV === 'production') ? false : (process.env.NODE_ENV || 'development');
module.exports = {
siteMetadata: {
buildId,
banner
},
plugins: [
2019-01-03 12:08:47 +00:00
'gatsby-plugin-react-helmet',
'gatsby-plugin-postcss'
]
};