'quasar #spa #apache #deploy'에 해당되는 글 1건
- 2021.01.14 spa deploy apache
RewriteEngine On
RewriteBase /[publicPath]/
RewriteRule ^index\.html$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /[publicPath]/index.html [L]
spa 빌드 이후 소스를 넣은 폴더에 .htaccess 파일을 생성.
위 내용을 넣어주면 됨.
publicPath : quasar.conf.js - build 부분에 추가.