Re: [Rails] //= require stylesheet with webpacker

2020-01-18 Thread Ariel Juodziukynas
"//= require ..." is Sprocket's syntax (most known as rails' assets pipeline), not webpacker's. If you really want to handle CSS assets with webpacker you should start by reading this https://github.com/rails/webpacker/blob/master/docs/css.md El sáb., 18 ene. 2020 a las 4:00, fugee ohu ()

Re: [Rails] How do I let users design their own blog with trix

2020-01-18 Thread Walter Lee Davis
> On Jan 17, 2020, at 6:29 PM, fugee ohu wrote: > > I know how to use trix in a field but how do I let users design their entire > page? > Trix is designed to be low- or no-design. The kinds of elements you can create with it (H1, P, FIGURE, UL, OL) are not, on their own, enough to

Re: [Rails] How do I let users design their own blog with trix

2020-01-18 Thread Niklas Bichinger
> > I know how to use trix in a field but how do I let users design their > entire page? > Trix is just a relatively small content editor - you might want to have a look at a CMS solution like this one https://github.com/comfy/comfortable-mexican-sofa, where you can prepare layouts and pages for

Re: [Rails] //= require stylesheet with webpacker

2020-01-18 Thread fugee ohu
On Saturday, January 18, 2020 at 11:11:11 AM UTC-5, Ariel Juodziukynas wrote: > > "//= require ..." is Sprocket's syntax (most known as rails' assets > pipeline), not webpacker's. If you really want to handle CSS assets with > webpacker you should start by reading this >