chroline/lynk

View on GitHub
next.config.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = {
  webpack: config => {
    config.module.rules.push(
      {
        test: /\.mdx/,
        type: "asset/source",
      },
      {
        test: /\.svg$/,
        use: ["@svgr/webpack"],
      }
    );

    return config;
  },
};