KNOW-HOW/ETC

NextJS에서 Typescript 절대경로 설정

코리안심슨 2022. 3. 6. 14:23

1. tsconfig.json에서 baseUrl 설정

{
  "compilerOptions": {
    "baseUrl": ".",
    ...
  }
  ...
}

2. next.config.js에서 webpack 설정

module.exports = {
  ...
  webpack(config) {
    config.resolve.modules.push(__dirname);
    return config;
  },
}