Files
psychartherapie-v2/next.config.js
2023-08-31 19:50:42 +02:00

24 lines
483 B
JavaScript

module.exports = {
webpack(config) {
config.module.rules.push({
test: /\.svg$/i,
issuer: /\.[jt]sx?$/,
use: ["@svgr/webpack"]
});
return config;
},
async rewrites() {
return [
{
source: "/",
destination: "/home"
},
{
source: "/admin",
destination: "/admin/index.html"
}
];
}
};