1
0
mirror of https://github.com/checktheroads/hyperglass synced 2024-05-11 05:55:08 +00:00
Files
checktheroads-hyperglass/hyperglass/ui/next.config.js
2021-09-09 18:03:04 -07:00

16 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;