aklinker1 / vite-plugin-web-extension

Vite plugin for developing Chrome/Web Extensions
https://vite-plugin-web-extension.aklinker1.io/
MIT License
553 stars 48 forks source link

fix: ignore `vite.config.ts` files for internal builds #57

Closed aklinker1 closed 1 year ago

aklinker1 commented 1 year ago

These internal builds already inherit the root vite config file's configuration, it is passed down through the extension.

So all we need to do is tell vite to not discover any config files, and the recursion will break.

This closes #56 (the infinite loop half of the issue).