mirror of
https://gitlab.com/serenetia/endpild-laman.git
synced 2025-03-15 08:55:53 +08:00
12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
sassOptions: {
|
|
includePaths: [
|
|
'./',
|
|
],
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|