Add support for environment variables

pull/1657/head
Kamran Ahmed 3 years ago
parent 06f83628f5
commit 713810ef75
  1. 26
      next.config.js
  2. 950
      package-lock.json

@ -1,6 +1,31 @@
const path = require('path');
const fs = require('fs');
const rehypePrism = require('@mapbox/rehype-prism');
/**
* Loads the configuration for the given environment
* @param env
* @returns {*}
*/
const loadConfig = (env = 'dev') => {
const configPath = `./config/${env}.json`;
if (!fs.existsSync(configPath)) {
console.warn(`Config file not found: ${configPath}. Using environment variables only.`);
}
const appConfig = {};
for (let key in process.env) {
if (!key.startsWith('ROADMAP_')) {
continue;
}
appConfig[key.replace('ROADMAP_', '')] = process.env[key];
}
return appConfig;
};
const withMDX = require('@next/mdx')({
extension: /\.(md|mdx)?$/,
options: {
@ -11,6 +36,7 @@ const withMDX = require('@next/mdx')({
let nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
env: loadConfig(process.env.NODE_ENV),
webpack(config, options) {
config.resolve.modules.push(path.resolve('./'));

950
package-lock.json generated

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save