Skip to content
This repository has been archived by the owner on Sep 26, 2024. It is now read-only.

Commit

Permalink
fix typos, add .env.development file and update nodemon to run in --m…
Browse files Browse the repository at this point in the history
…ode development explicitly (#155)

Co-authored-by: Kayla Fitzsimmons <[email protected]>
  • Loading branch information
fitzk and Kayla Fitzsimmons authored Aug 22, 2024
1 parent 1e3f2db commit 2b56761
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions apps/mocksi-lite-next/.env.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# [NO SENSITIVE DATA] use .env.local for secrets / passwords
VITE_NEST_APP=http://localhost:3030
4 changes: 2 additions & 2 deletions apps/mocksi-lite-next/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
}
],
"content_security_policy": {
"extension_pages": "object-src 'none'; child-src http://nest-auth-ts-merge.onrender.com; frame-src http://nest-auth-ts-merge.onrender.com; script-src 'self'"
"extension_pages": "object-src 'none'; child-src https://nest-auth-ts-merge.onrender.com; frame-src https://nest-auth-ts-merge.onrender.com; script-src 'self'"
},
"description": "https://www.mocksi.ai",
"externally_connectable": {
"matches": ["http://nest-auth-ts-merge.onrender.com/*"]
"matches": ["https://nest-auth-ts-merge.onrender.com/*"]
},
"icons": {
"128": "mocksi-logo.png"
Expand Down
2 changes: 1 addition & 1 deletion apps/mocksi-lite-next/nodemon.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"env": {
"__DEV__": "true"
},
"exec": "vite build",
"exec": "vite build --mode development",
"ext": "tsx,css,html,ts,json",
"ignore": ["src/**/*.test.ts"],
"watch": [
Expand Down

0 comments on commit 2b56761

Please sign in to comment.