mirror of
https://gitlab.com/serenetia/endpild-laman.git
synced 2025-03-15 07:16:16 +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;
|