Remove yuri wallpaper for some reason and attempt to fix emoji won't load issues.
|
@ -1,6 +1,14 @@
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
reactStrictMode: true,
|
reactStrictMode: true,
|
||||||
|
images: {
|
||||||
|
remotePatterns: [
|
||||||
|
{
|
||||||
|
protocol: "https",
|
||||||
|
hostname: "**",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
module.exports = nextConfig
|
module.exports = nextConfig
|
||||||
|
|
2921
package-lock.json
generated
Normal file
Before Width: | Height: | Size: 416 KiB |
BIN
public/120913376_p0.png
Executable file
After Width: | Height: | Size: 3.1 MiB |
BIN
public/16-9.png
Before Width: | Height: | Size: 13 MiB |
Before Width: | Height: | Size: 902 KiB |
BIN
public/bg.jpg
Before Width: | Height: | Size: 578 KiB |
Before Width: | Height: | Size: 42 KiB |
Before Width: | Height: | Size: 97 KiB |
Before Width: | Height: | Size: 270 KiB |
BIN
public/mobile.png
Normal file
After Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 81 KiB |
|
@ -8,7 +8,7 @@ body {
|
||||||
color: #ffc6d7fc;
|
color: #ffc6d7fc;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
--background-image: url("/113909210_p0.jpg");
|
--background-image: url("/120913376_p0.png");
|
||||||
background-image: var(--background-image);
|
background-image: var(--background-image);
|
||||||
|
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
|
@ -19,7 +19,7 @@ body {
|
||||||
|
|
||||||
@media only screen and (orientation: portrait) {
|
@media only screen and (orientation: portrait) {
|
||||||
body {
|
body {
|
||||||
--background-image: url("/mobile.jpg");
|
--background-image: url("/mobile.png");
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|