n-m-api / next.config.mjs
AlexMia's picture
Upload 49 files
bb11990 verified
raw
history blame contribute delete
384 Bytes
/** @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;