aboutsummaryrefslogtreecommitdiff
path: root/files
diff options
context:
space:
mode:
authormongolyy <mongolyy@gmail.com>2022-01-22 15:29:34 +0900
committerpotappo <potappo@gmail.com>2022-01-22 17:13:26 +0900
commit1b7ef5e1fdebcd23c0234d953b1b72be3790d451 (patch)
tree937bf6b8fc7885b1b22ec40b609b9436ccd1a4fa /files
parent799ce0a4487506b66456aa65dd8e11bcb2cb0a29 (diff)
downloadtranslated-content-1b7ef5e1fdebcd23c0234d953b1b72be3790d451.tar.gz
translated-content-1b7ef5e1fdebcd23c0234d953b1b72be3790d451.tar.bz2
translated-content-1b7ef5e1fdebcd23c0234d953b1b72be3790d451.zip
minificationを翻訳
Diffstat (limited to 'files')
-rw-r--r--files/ja/glossary/minification/index.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/files/ja/glossary/minification/index.md b/files/ja/glossary/minification/index.md
new file mode 100644
index 0000000000..7df103a47a
--- /dev/null
+++ b/files/ja/glossary/minification/index.md
@@ -0,0 +1,17 @@
+---
+title: minification
+slug: Glossary/minification
+tags:
+- Glossary
+- Performance
+- Reference
+- Web Performance
+- 用語集
+- 性能
+- ウェブの性能
+---
+**minification** とは、ブラウザによるリソースの処理に影響を与えることなく、不要なデータや冗長なデータを削除する処理です。
+
+minification には、コードコメント、空白、未使用コードの削除、変数名や関数名の短縮が含まれます。Minification はファイルサイズを削減することで、Webのパフォーマンスを向上させるために使用されます。一般的には、ビルド時に自動的に実行されます。
+
+minification により人間にとって読みにくいコードになるので、開発者ツールにはコードに空白を戻して少しでも読みやすくすることができる '整形' 機能があります。