module css 문법이 작동하는 방식

// relevant part of 'next.config.js'
const path = require('path');

module.exports = {
  sassOptions: {
    includePaths: [path.join(__dirname, 'src/styles')],
  },
};