File size: 384 Bytes
bb11990 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | /** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.module.rules.push({
test: /\.(ttf|html)$/i,
type: 'asset/resource'
});
return config;
},
experimental: {
serverMinification: false, // the server minification unfortunately breaks the selector class names
},
};
export default nextConfig;
|