2021-11-30 23:48:54 +01:00
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
module.exports = {
|
|
|
|
reactStrictMode: true,
|
2022-07-30 17:48:18 +02:00
|
|
|
images: {
|
|
|
|
domains: ["openai-labs-public-images-prod.azureedge.net"]
|
2022-10-03 01:35:03 +02:00
|
|
|
},
|
2022-10-07 23:03:39 +02:00
|
|
|
webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
|
|
|
|
config.module.rules.push({
|
|
|
|
test: /\.adoc$/i,
|
|
|
|
loader: "raw-loader",
|
|
|
|
});
|
|
|
|
return config;
|
|
|
|
},
|
2022-10-03 01:35:03 +02:00
|
|
|
};
|