Skip to content

Commit

Permalink
build(scripts): development로 혼용되었던 localhost 모드 분리
Browse files Browse the repository at this point in the history
  • Loading branch information
yoopark committed Oct 12, 2023
1 parent 8a48aa6 commit ff3845e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite",
"dev": "vite -m localhost",
"build": "tsc && vite build",
"build:dev": "tsc && vite build -m development",
"preview": "vite preview",
"compile": "DOTENV_CONFIG_PATH=./env/.env.development graphql-codegen -r dotenv/config",
"watch": "DOTENV_CONFIG_PATH=./env/.env.development graphql-codegen -r dotenv/config -w",
"compile": "DOTENV_CONFIG_PATH=./env/.env.localhost graphql-codegen -r dotenv/config",
"watch": "DOTENV_CONFIG_PATH=./env/.env.localhost graphql-codegen -r dotenv/config -w",
"format": "prettier . --write",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
Expand Down

0 comments on commit ff3845e

Please sign in to comment.