first commit

This commit is contained in:
Lee
2023-10-19 05:21:35 +01:00
parent 4cfe8463ee
commit 6acf6e8635
20 changed files with 3089 additions and 143 deletions

View File

@ -1,4 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "cdn.fascinated.cc",
port: "",
pathname: "/**",
},
],
},
};
module.exports = nextConfig
module.exports = nextConfig;