mirror of https://github.com/buster-so/buster.git
16 lines
336 B
JavaScript
16 lines
336 B
JavaScript
import path from 'path';
|
|
import { fileURLToPath } from 'url';
|
|
import { dirname } from 'path';
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
const __dirname = dirname(__filename);
|
|
|
|
const nextConfig = {
|
|
reactStrictMode: false,
|
|
sassOptions: {
|
|
includePaths: [path.join(__dirname, 'styles')]
|
|
}
|
|
};
|
|
|
|
export default nextConfig;
|