dds / next.config.js
dakaca's picture
Upload 150 files
a1fb323
raw
history blame contribute delete
No virus
297 Bytes
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ["@svgr/webpack"],
});
return config;
},
output: "standalone",
};
module.exports = nextConfig;