An error message in my browser has informed me that:
ClojureScript could not load :main, did you forget to specify :asset-path?
According to the documentation, :asset-path is a compiler option. What is the correct place in my leiningen configuration file for a compiler option such as :asset-path? It doesn't seem to work at the top level.
The project is freshly generated using this command:
lein new figwheel-main <name> -- --reagent
I'm hosting the website on my own server, with the output files hosted at /static/cljs-out
, hence the need for the :asset-path option.
Leiningen version is 2.9.1, figwheel-main version is 0.2.16