next-app-boilerplate/next.config.js

14 lines
273 B
JavaScript
Raw Normal View History

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