123456789101112131415161718 |
- /** @type {import('next').NextConfig} */
- const nextConfig = {
- experimental: {
- appDir: true,
- },
- webpack(config) {
- config.module.rules.push({
- test: /\.svg$/,
- use: ["@svgr/webpack"],
- });
- return config;
- },
- output: "standalone",
- };
- export default nextConfig;
|