lookingglass/hyperglass/ui/next.config.js
2021-09-09 18:03:04 -07:00

15 lines
277 B
JavaScript

const envData = require('/tmp/hyperglass.env.json');
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
reactStrictMode: true,
poweredByHeader: false,
env: { ...envData },
typescript: {
ignoreBuildErrors: true,
},
};
module.exports = nextConfig;