NextJS에서 scss 사용하기

우뱅뱅·2021년 9월 2일
0
$ yarn add sass

// next.config.js
/** @type {import('next').NextConfig} */
const path = require('path');
module.exports = {
  sassOptions: {
    includePaths: [path.join(__dirname, 'styles')],
    reactStrictMode: true,
  },
}
profile
개발왕이 될 남자

0개의 댓글