Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In Vue, how to include .htaccess to production using npm run build?

I'm using Vue CLI 3 and vue-router mode history and had this problem. Found out that after I run npm run build, I need to put .htaccess inside the dist folder.

How to make npm run build to automatically include the .htaccess so that I don't need to manually copy it into dist folder?

like image 844
Christhofer Natalius Avatar asked Sep 19 '18 03:09

Christhofer Natalius


1 Answers

It might sound obvious, but placing the .htaccess inside the public folder seems to do the trick for me. Everything contained in public folder is copied as is to dist folder during build.

like image 87
Marc Antoine Froger Avatar answered Nov 16 '22 00:11

Marc Antoine Froger