KaitakuShiba
I am learning with elixir: 1.9.1 and Phoenix: 1.4.9.
Phoenix: 1.4.0 ~ recognizes that the front build tool has changed from Brunch to Webpack.
However, brunch-config.js is still in the file generated by phoenix new.
There is something I want to check here.
What you want to check
Will you still use brunch-config.js? For example, when installing sass-brunch with 1.3.0, it seems that the setting is written to npm install-> brunch-config.js, but after 1.4.0, brunch-config.js should not be used basically. Is not it?
2. According to How to use SASS / SCSS with Webpack in Phoenix 1.4,
It is written that the setting is written in assets / webpack.config.js, but there is no such file in the generated file. Will this be created by yourself if necessary?
Thanks.
reference
How to use SASS / SCSS with Webpack in Phoenix 1.4
Phoenix 1.3 to 1.4-Migrating from Brunch to Webpack
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #channels
- #elixirconf
- #exunit
- #discussion
- #code-sync
- #javascript
- #podcasts
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixir-ls
- #blog-post
- #phoenix_html
- #iex
- #graphql
- #ai
- #genstage
- #elixirconf-us
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #metaprogramming
- #security
- #hex










Showing Posts 1 to 4- Show Best Posts
- Show All Posts (oldest first)
- Show All Posts (newest first)
jola
You’re using an old version of
phx_new, which is why you get the old template.Use
mix archive.install hex phx_newto upgrade to the latest version of the generator, and then trymix phx.newagain, you shouldn’t get any brunch files.KaitakuShiba
Thank you for reply.
I thought I use
mix archive.install hex phx_newon Docker..NobbZ
Do not use
phoenix.newits a legacy task and will eventually be removed. Please usephx.new.KaitakuShiba
I’m sorry for the mistake.
The problem was solved.
Thank you for your supports.