mirror of
https://github.com/AderKonstantin/aderktech-chronark.com-.git
synced 2025-06-08 13:48:42 +03:00
12 lines
177 B
JavaScript
12 lines
177 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
images: {
|
|
domains: ["pbs.twimg.com"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|