Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

03-pages > 02-api-reference > 03-next-config-js > compress.mdx 번역 #382

Merged
merged 3 commits into from
Aug 9, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/02-app/02-api-reference/05-next-config-js/compress.mdx
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
title: compress
description: Next.js provides gzip compression to compress rendered content and static files, it only works with the server target. Learn more about it here.
description: Next.js는 렌더링 된 콘텐츠와 정적 파일을 압축하기 위해 gzip 압축을 제공하며, 서버를 대상으로만 작동합니다. 자세한 내용은 여기를 참조하십시오.
---

Next.js provides [**gzip**](https://tools.ietf.org/html/rfc6713#section-3) compression to compress rendered content and static files. In general you will want to enable compression on a HTTP proxy like [nginx](https://www.nginx.com/), to offload load from the `Node.js` process.
Next.js는 렌더링 된 콘텐츠와 정적 파일을 압축하기 위해 [**gzip**](https://tools.ietf.org/html/rfc6713#section-3) 압축을 제공합니다. 일반적으로 `Node.js` 프로세스의 부하를 줄이기 위해 [nginx](https://www.nginx.com/)와 같은 HTTP 프록시를 압축하는 것이 좋습니다.

To disable **compression**, open `next.config.js` and disable the `compress` config:
**압축**을 비활성화하려면, `next.config.js` 파일을 열고 `compress` 설정을 비활성화하세요.

```js filename="next.config.js"
module.exports = {
Expand Down