mirror of
https://github.com/cssgunc/compass.git
synced 2025-04-20 18:40:17 -04:00
12 lines
206 B
JavaScript
12 lines
206 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
images: {
|
|
domains: ["notioly.com"],
|
|
},
|
|
experimental: {
|
|
serverActions: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|