Portfolio/next.config.js

7 lines
244 B
JavaScript
Raw Permalink Normal View History

2021-01-11 10:05:11 -08:00
const isProd = process.env.NODE_ENV === 'production'
2021-01-11 08:53:46 -08:00
module.exports = {
2021-01-11 10:05:11 -08:00
// Use the CDN in production and localhost for development.
assetPrefix: isProd ? 'https://cdn.statically.io/gh/Priyatham-sai-chand/Portfolio/gh-pages/' : '',
}