9 lines
159 B
JavaScript
9 lines
159 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
sassOptions: {
|
|
silenceDeprecations: ['legacy-js-api'],
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|