0👍
A preflight request should be confirmed with a 204 No Content HTTP code (along with the headers).
Try adding the following to your .htaccess
, right underneath the Header
directives:
RewriteCond %{REQUEST_METHOD} OPTIONS
RewriteRule ^(.*)$ $1 [R=204,L]
- [Vuejs]-Tell Webpack Where to Find Static Assets in Vue Application
- [Vuejs]-Vue js error: Property or method "smoothie" is not defined on the instance but referenced during render
Source:stackexchange.com