We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a58b61 commit aaa0d30Copy full SHA for aaa0d30
.github/workflows/deployment.yml
@@ -32,7 +32,7 @@ jobs:
32
echo "========================="
33
echo "🚀 Building project ..."
34
35
- if ! docker compose up -d prod; then
+ if ! docker compose up -d --no-deps --build prod; then
36
echo "❌ Error building project!"
37
exit 1
38
fi
public/.htaccess
@@ -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