mirror of
https://github.com/Llewellynvdm/conky.git
synced 2024-11-16 10:05:22 +00:00
29 lines
702 B
TOML
29 lines
702 B
TOML
[build]
|
|
command = "npm run build"
|
|
publish = ".next"
|
|
|
|
# Include the doc dir in the build ignore command
|
|
ignore = "git diff --quiet $CACHED_COMMIT_REF $COMMIT_REF . ../doc/"
|
|
|
|
[build.environment]
|
|
# cache Cypress binary in local "node_modules" folder
|
|
# so Netlify caches it
|
|
CYPRESS_CACHE_FOLDER = "./node_modules/CypressBinary"
|
|
# set TERM variable for terminal output
|
|
TERM = "xterm"
|
|
|
|
[[plugins]]
|
|
package = "@netlify/plugin-nextjs"
|
|
|
|
[[plugins]]
|
|
package = "netlify-plugin-cypress"
|
|
|
|
# do not test the deployed URL
|
|
[plugins.inputs]
|
|
enable = false
|
|
# test the local site
|
|
[plugins.inputs.preBuild]
|
|
enable = true
|
|
start = 'npx netlify dev'
|
|
wait-on = 'http://localhost:8888'
|