mirror of
https://github.com/fergalmoran/radio-otherway.git
synced 2025-12-22 09:50:29 +00:00
12 lines
202 B
JavaScript
12 lines
202 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
images: {
|
|
domains: ["firebasestorage.googleapis.com"],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|