Skip to content

Commit

Permalink
Merge pull request #15 from sendbird/luke/fix-npm-github-pages-build
Browse files Browse the repository at this point in the history
Fix build:pages
  • Loading branch information
luke-cha authored Jul 21, 2023
2 parents 7889d55 + e44391d commit 9bac52b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"prebuild": "rm -rf ./dist && mv .env .env_temp || true",
"postbuild": "mv .env_temp .env || true",
"build": "npm run prebuild && tsc-silent -p './tsconfig.json' --suppress @ && vite build && npm run postbuild",
"build:pages": "npm run prebuild && tsc-silent -p './tsconfig.json' --suppress @ && vite build --config vite.config.pages.ts",
"build:pages": "rm -rf ./dist && tsc-silent -p './tsconfig.json' --suppress @ && vite build --config vite.config.pages.ts",
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
Expand Down

0 comments on commit 9bac52b

Please sign in to comment.