13 lines
244 B
TypeScript
13 lines
244 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const path = require("path");
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
sassOptions: {
|
|
includePaths: [path.join(__dirname, "./src/styles")],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|