mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
22 lines
423 B
JavaScript
22 lines
423 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const config = {
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
use: ["@svgr/webpack"],
|
|
});
|
|
|
|
return config;
|
|
},
|
|
images: {
|
|
domains: ["localhost", "t3.gstatic.com", "lh3.googleusercontent.com"],
|
|
formats: ["image/webp"],
|
|
},
|
|
reactStrictMode: false,
|
|
experimental: {
|
|
webpackBuildWorker: true,
|
|
},
|
|
};
|
|
|
|
module.exports = config;
|