Skip to content

Commit aaa0d30

Browse files
committed
new: dev: Added .htaccess and updated workflow command
1 parent 8a58b61 commit aaa0d30

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/deployment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
echo "========================="
3333
echo "🚀 Building project ..."
3434
echo "========================="
35-
if ! docker compose up -d prod; then
35+
if ! docker compose up -d --no-deps --build prod; then
3636
echo "❌ Error building project!"
3737
exit 1
3838
fi

public/.htaccess

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
Options +MultiViews
2+
RewriteEngine On
3+
RewriteCond %{REQUEST_FILENAME} !-f
4+
RewriteCond %{REQUEST_FILENAME} !-d
5+
RewriteRule ^ / [QSA,L]

0 commit comments

Comments
 (0)