Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add opt-in bundling with Vite #1262

Open
wants to merge 4 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ v8-compile-cache*
private

# Build files
/src/client/public/app/*
/src/client/public/**
!/src/client/public/favicon.ico
!/src/client/public/logo.png
!/src/client/public/refresh.png

# Environment Variables
.env
Expand Down
5 changes: 2 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,7 @@ services:
# What it will change is the date/time stamp on logs, notes and change dates that place the current date/time.
# It can also impact the interpretation of readings sent to OED such as Unix timestamps.
- TZ=Etc/UTC # Set the timezone of the Docker container where OED runs the web services.
# If in a subdirectory, set it here
# - OED_SUBDIR=/subdir/
# Set the correct build environment.
# Set the correct build environment.
build:
context: ./
dockerfile: ./containers/web/Dockerfile
Expand All @@ -62,6 +60,7 @@ services:
# Map the default port.
ports:
- "3000:3000" # Should be commented out if you uncomment 80:3000 below.
- "8085:8085"
- "9229:9229" # Debug port, should be commented out for production
# For production you might want something like:
# - "80:3000"
Expand Down
Loading
Loading