mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-05 03:40:13 +00:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
domains: ["localhost", "tube.stiforr.tech"],
|
|
},
|
|
reactStrictMode: true,
|
|
};
|
|
|
|
module.exports = nextConfig;
|