logto-nextjs/next.config.ts
2025-07-28 15:37:21 +02:00

16 lines
318 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
webpack: config => {
config.module.rules.push({
test: /\.(graphql|gql)$/,
exclude: /node_modules/,
loader: "graphql-tag/loader",
});
return config;
},
};
export default nextConfig;