Skip to content

Commit fd849cd

Browse files
Fix Netlify secrets scan config
1 parent 80bfed3 commit fd849cd

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

netlify.toml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
# Netlify configuration
22

33
[build]
4-
# This command is run to build the site
5-
command = "npm run build --prefix frontend"
6-
# This is the directory that contains the built site
7-
publish = "frontend/dist"
4+
base = "frontend"
5+
# This command is run to build the site
6+
command = "npm run build"
7+
# This is the directory that contains the built site
8+
publish = "frontend/dist"
89

910
[build.environment]
10-
# Omit these keys from Netlify's secret scanning, as they are safe to be public.
11-
SECRETS_SCAN_OMIT_KEYS = ["VITE_API_URL", "VITE_GEOAPIFY_API_KEY"]
11+
# Omit these keys from Netlify's secret scanning, as they are safe to be public.
12+
SECRETS_SCAN_OMIT_KEYS = "VITE_API_URL,VITE_GEOAPIFY_API_KEY"

0 commit comments

Comments
 (0)