A mi me esta generando un error. Una vez modifique el next.config.mjs
, ya no corre la app. Copie el codigo del repo pero no me sirvio.
Lo solucione con este codigo:
import { fileURLToPath } from 'url';
import { dirname, join } from 'path';
/** @type {import('next').NextConfig} */
// Get the directory name of the current module
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
const nextConfig = {
sassOptions: {
includePaths: [join(__dirname, 'src/sass')],
prependData: `@import "main.sass"`,
},
};
export default nextConfig;
¿Quieres ver más aportes, preguntas y respuestas de la comunidad?