31 lines
807 B
Plaintext
Raw Permalink Normal View History

2024-07-10 12:55:22 +00:00
run = "npm run dev"
2025-06-14 07:34:23 +00:00
entrypoint = "src/App.jsx"
2024-07-10 12:55:22 +00:00
hidden = [".config", "tsconfig.json", "tsconfig.node.json", "vite.config.js", ".gitignore"]
[nix]
2025-06-14 07:34:23 +00:00
channel = "stable-22_11"
2024-07-10 12:55:22 +00:00
[env]
PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin"
npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global"
[gitHubImport]
requiredFiles = [".replit", "replit.nix", ".config"]
[packager]
language = "nodejs"
[packager.features]
packageSearch = true
guessImports = true
enabledForHosting = false
[languages]
[languages.javascript]
pattern = "**/{*.js,*.jsx,*.ts,*.tsx}"
[languages.javascript.languageServer]
start = "typescript-language-server --stdio"
[deployment]
2025-06-14 07:34:23 +00:00
build = ["sh", "-c", "npm run build"]
run = ["sh", "-c", "npm run preview"]