mirror of
https://github.com/thatmattlove/hyperglass.git
synced 2026-01-17 00:38:06 +00:00
14 lines
256 B
JavaScript
14 lines
256 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
*/
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
poweredByHeader: false,
|
|
typescript: {
|
|
ignoreBuildErrors: true,
|
|
},
|
|
swcMinify: true,
|
|
productionBrowserSourceMaps: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|