I want to run my quasar project on domain.local I have setup my configuration file as below My configuration:
ServerName domain.local
ServerAlias *.domain.local
DocumentRoot /project/
<Directory "/project/">
AllowOverride All
Require all granted
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.html [L]
</IfModule>
</Directory>