diff --git a/next.config.ts b/next.config.ts new file mode 100644 index 0000000..d48c863 --- /dev/null +++ b/next.config.ts @@ -0,0 +1,9 @@ +const path = require('path') + +module.exports = { + productionBrowserSourceMaps: true, + swcMinify: true, + sassOptions: { + includePaths: [path.join(__dirname, 'styles')] + } +}