2022-03-17 01:11:10 +01:00
|
|
|
const path = require('path')
|
2022-02-12 23:07:11 +01:00
|
|
|
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
|
|
module.exports = {
|
|
|
|
reactStrictMode: true,
|
2022-03-17 12:26:12 +01:00
|
|
|
swcMinify: true,
|
2022-02-12 23:07:11 +01:00
|
|
|
sassOptions: {
|
2022-02-17 15:43:21 +01:00
|
|
|
includePaths: [
|
2022-03-17 01:11:10 +01:00
|
|
|
path.join(__dirname, 'styles/abstracts'),
|
|
|
|
path.join(__dirname, 'styles/base')
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|