1
0
Fork 0
forked from OpenNeo/impress

Fix bin/dev to use the right settings in development

Oh yeah, I didn't catch that `bin/dev` calls the `Procfile` which in
turn calls `yarn build --watch`, which leaves out the important
`--public-path=/dev-assets` argument!

Calling `yarn dev` instead keeps us consistent!
This commit is contained in:
Emi Matchu 2023-11-02 16:52:25 -07:00
parent 7a3aa609ba
commit 1830689a19

View file

@ -1,2 +1,2 @@
web: unset PORT && env RUBY_DEBUG_OPEN=true bin/rails server
js: yarn build --watch
js: yarn dev