forked from mirrors/thatmattlove-hyperglass
15 lines
277 B
JavaScript
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;
|