buster/web/next.config.mjs

16 lines
336 B
JavaScript
Raw Normal View History

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')]
}
};
2025-03-08 07:02:56 +08:00
export default nextConfig;