This commit moves the mix.exs, mix.lock and priv directors that were inside app/ to the root directory. Configuration tweaks with paths were done for the asset building. The priv/ directory had to be moved because mix by default symlinks it inside the build output, and I couldn't find a configuration option to have it live inside app/
6 lines
244 B
Elixir
6 lines
244 B
Elixir
[
|
|
import_deps: [:ecto, :ecto_sql, :phoenix],
|
|
subdirectories: ["priv/*/migrations"],
|
|
plugins: [Phoenix.LiveView.HTMLFormatter, TailwindFormatter],
|
|
inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}", "priv/*/seeds.exs"]
|
|
]
|