2024-06-21

This commit is contained in:
2024-06-21 14:14:35 +09:00
parent 955bf1c64c
commit 8480fa7c8f
32 changed files with 2258 additions and 19 deletions

View File

@@ -0,0 +1,20 @@
# 웹 컴포넌트
## 프로젝트 셋업
```bash
mkdir my-project
cd my-project
yarn init
mkdir src
touch index.js
```
```bash
yarn add webpack webpack-cli webpack-dev-server --dev
yarn add @babel/core @babel/preset-env babel-loader --dev
또는
npx webpack-cli init
```