next.js/examples/with-typescript-graphql/next.config.js
next.config.js13 lines226 B
/** @type {import('next').NextConfig} */
module.exports = {
  webpack(config, options) {
    config.module.rules.push({
      test: /\.ya?ml$/,
      type: "json",
      use: "yaml-loader",
    });

    return config;
  },
};
Quest for Codev2.0.0
/
SIGN IN