Work on the dev env and building for production and staging.

This commit is contained in:
Scott Idem
2024-10-03 20:48:41 -04:00
parent 7b84e1c1fc
commit b6cd3f59e5
7 changed files with 116 additions and 2 deletions

View File

@@ -5,6 +5,8 @@
"scripts": {
"dev": "vite dev",
"build": "vite build",
"build:prod": "cp .env.prod .env.production && vite build",
"build:staging": "cp .env.staging .env.production && vite build",
"preview": "vite preview",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",