Files
psychartherapie-v2/next.config.js

25 lines
505 B
JavaScript

module.exports = {
distDir: "build",
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"
}
];
}
};