next-app-boilerplate/next.config.js

13 lines
259 B
JavaScript
Raw Normal View History

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