mirror of
https://github.com/bartvdbraak/omnidash.git
synced 2025-04-27 15:31:21 +00:00
9 lines
161 B
JavaScript
9 lines
161 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
appDir: true,
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|