๐ย Reference
๐ Chapter
๐ย Index
์์ 1
{
"name": "vite-project-1",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite --host",
"build": "vue-tsc --noEmit && vite build",
"preview": "vite preview"
},
"dependencies": {
"ant-design-vue": "^3.2.13",
"vue": "^3.2.37"
},
"devDependencies": {
"@vitejs/plugin-vue": "^3.1.0",
"typescript": "^4.6.4",
"unplugin-vue-components": "^0.22.8",
"vite": "^3.1.0",
"vue-tsc": "^0.40.4"
}
}
vite --host
0.0.0.0
ย ๋๋ย true
๋ก ์ค์ ํ๋ผ.--host 0.0.0.0
ย orย --host
๋ก ์ค์ ๋ ์ ์๋ค.vite --host 0.0.0.0 --port 4000
vue-tsc --noEmit
์์ 2
{
"name": "front-project-2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "vite --port 8080 --host",
"build": "vite build",
"serve": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src"
},
"dependencies": {
"@ant-design/icons-vue": "^6.1.0",
"@popperjs/core": "^2.11.6",
"axios": "^1.3.4",
"chroma-js": "^2.4.2",
"dayjs": "^1.11.5",
"draggable": "^4.2.0",
"gsap": "^3.11.3",
"lodash": "^4.17.21",
"mitt": "^3.0.0",
"moment": "^2.29.4",
"pinia": "^2.0.33",
"recordrtc": "^5.6.2",
"simplex-noise": "^4.0.1",
"siriwave": "^2.3.0",
"three": "^0.134.0",
"troisjs": "^0.3.4",
"tweakpane": "^3.1.0",
"uuid": "^9.0.0",
"vue": "^3.2.13",
"vue-router": "^4.0.3",
"vue3-lottie": "^2.3.0",
"wavesurfer.js": "^6.2.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/chroma-js": "^2.1.4",
"@types/dat.gui": "^0.7.7",
"@types/lodash": "^4.14.187",
"@types/recordrtc": "^5.6.8",
"@types/three": "^0.144.0",
"@types/uuid": "^9.0.1",
"@types/wavesurfer.js": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-vue": "^4.1.0",
"@vue/eslint-config-typescript": "^11.0.2",
"dat.gui": "^0.7.9",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.10.0",
"less": "^4.0.0",
"prettier": "^2.4.1",
"typescript": "^5.0.3",
"vite": "^4.2.1"
}
}