Where can I add the _redirects in a quasar root structure

I can’t find anything on Google. Netlify recommends that we make a _redirects file and put it in the public folder so that it ends up in the dist folder when netlify compiles the build. Problem is, quasar doesn’t have this folder and creating it didn’t make a difference. No matter where I put it, it doesn’t end up in the dist folder and my site is not working. Any help will be appreciated

Hello @lotusms, you’ll want to make sure you have your _redirects file copied to the folder you have set as your ‘publish directory’, which seems to be dist/spa. You could copy the file as part of your build command. Something like quasar build && cp _redirects dist/spa might work.