2025-01-24T01:44:03

This commit is contained in:
2025-01-24 01:44:03 +09:00
parent 297ea8abaf
commit 3d30ee3192
68 changed files with 1128 additions and 1079 deletions

20
doc/etc/WebComponents.md Normal file
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
```