feat(front): routes secured under jwt session + small user component done

This commit is contained in:
2024-07-25 00:03:48 +02:00
parent fd81b532d0
commit 75e1fe4c65
25 changed files with 179 additions and 24 deletions

View File

@@ -9,6 +9,16 @@ const nextConfig = {
prependData: `@import "@/styles/variables";`,
includePaths: [path.join("@", "styles")],
},
images: {
remotePatterns: [
{
protocol: "https",
hostname: "picsum.photos",
port: "",
pathname: "/**",
},
],
},
};
export default nextConfig;