-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbunfig.toml
More file actions
34 lines (25 loc) · 724 Bytes
/
bunfig.toml
File metadata and controls
34 lines (25 loc) · 724 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Bun workspace configuration for Browser Pool monorepo
# Defines the workspace structure with backend and frontend packages
[workspace]
# Root package at .
root = "."
# Workspace members - subdirectories that are npm packages
members = ["frontend"]
# Global install location (uses Bun's default)
# install.cacheDir = ".bun/install/cache"
[install]
# Use exact versions from package.json
exact = true
# Production dependencies should be installed
production = true
# Allow updating lockfile
frozen = false
[build]
# Target for build outputs
target = "browser"
[dev]
# Port for the development server
port = 3000
[define]
# Environment variables accessible at compile time
"process.env.NODE_ENV" = "\"development\""