Skip to content

Commit

Permalink
add postcss, check dirs in .htaccess
Browse files Browse the repository at this point in the history
  • Loading branch information
cbrxyz committed Nov 26, 2024
1 parent 8ec007d commit 44498bf
Show file tree
Hide file tree
Showing 6 changed files with 3,979 additions and 1,560 deletions.
11 changes: 11 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Options -MultiViews
RewriteEngine On

# check if request is not an existing file
RewriteCond %{REQUEST_FILENAME} !-f

# check if request is not an existing directory
RewriteCond %{REQUEST_FILENAME} !-d

# Redirect to index.html
RewriteRule ^ index.html [QSA,L]
Loading

0 comments on commit 44498bf

Please sign in to comment.