Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions fundamentals/bundling/webpack-tutorial/environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ npm install --save-dev dotenv-webpack

`.env` 파일 μ˜ˆμ‹œ:

```env
```dotenv
# API μ„€μ •
API_URL=https://api.example.com
API_KEY=your-api-key
Expand Down Expand Up @@ -108,7 +108,7 @@ const App: React.FC = () => {
- `dotenv-webpack`의 `safe` μ˜΅μ…˜μ„ μ‚¬μš©ν•΄μš”
- `.env.example` νŒŒμΌμ— ν•„μˆ˜ λ³€μˆ˜λ₯Ό μ •μ˜ν•΄μš”:

```env
```dotenv
API_URL=
API_KEY=
DEBUG_MODE=
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ document.addEventListener("DOMContentLoaded", function () {

μ§€κΈˆκΉŒμ§€ λ§Œλ“€μ–΄μ§„ 파일 ꡬ쑰λ₯Ό λ‹€μ‹œ μ‚΄νŽ΄λ³Όκ²Œμš”.

```{6-10}
```text{6-10}
example-project/
β”œβ”€β”€ index.html
β”œβ”€β”€ style.css
Expand Down
2 changes: 1 addition & 1 deletion fundamentals/debug/pages/fix/dead-code.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export function formatDateForChristmasEventUser(date: Date): string {

`stylelint`λ₯Ό μ‚¬μš©ν•΄ μ‚¬μš©λ˜μ§€ μ•Šμ„ μ„ νƒμžκ°€ μ €μž₯λ˜λŠ” 것을 μ˜ˆλ°©ν•  수 도 μžˆμ–΄μš”. μ•„λž˜μ™€ 같이 `stylelintrc` νŒŒμΌμ— 린트λ₯Ό μ…‹νŒ…ν•΄ 두면, μ„ μ–Έλ˜μ—ˆμ§€λ§Œ μ‚¬μš©λ˜μ§€ μ•Šμ€ ν΄λž˜μŠ€κ°€ 있으면 μ›Œλ‹μ„ λ„μ›Œμ€˜μš”. 단, λŸ°νƒ€μž„μ—λ§Œ λ“±μž₯ν•˜λŠ” ν΄λž˜μŠ€λŠ” **μ˜€νƒ/미탐** κ°€λŠ₯성이 μžˆμ–΄μš”.

```cli
```bash
npm install --save-dev stylelint stylelint-no-unused-selectors
```

Expand Down