Initial commit

This commit is contained in:
2023-08-28 13:12:21 +02:00
commit 52134c91ef
78 changed files with 13869 additions and 0 deletions

23
next.config.js Normal file
View File

@@ -0,0 +1,23 @@
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",
},
];
},
};