Files
TJWaterServer/next.config.mjs
2026-02-04 15:37:08 +08:00

22 lines
374 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "standalone",
turbopack: {
rules: {
"*.svg": {
loaders: ["@svgr/webpack"],
as: "*.js",
},
},
},
webpack(config) {
config.module.rules.push({
test: /\.svg$/,
use: ['@svgr/webpack'],
});
return config;
},
};
export default nextConfig;