Where in the dir structure should a helper module go?
-
Hello,
I’m building an app which does some data analysis. The data analysis code is encapsulated in a module. Where should that module file go? Notboot
because it doesn’t need to be executed at the beginning; notcomponent
because it doesn’t show up in the screen; should it go tostatics
even if it’s not an image? Or should it just be placed like/src/my_module.js
?thank you!
-
@r03ert0 you can make helpers folder or whatever name you want and make an alias for it https://quasar.dev/quasar-cli/cli-documentation/handling-webpack#Adding-Webpack-aliases.
-
thank you!