How do I import a Sass library from within a "node_module" (Rails 5.1)?
11
Rails
Pretty much the question above!
I have a Rails 5.1 app with webpacker installed, and I used npm to install a front end framework:
`npm install bulma --save`
Now that it is inside of `node_module...
Ryan Martin replied
Solved
Is there a beginners course?
8
Rails
Hi I've searched but I cant find a beginners to rails course, am I being blind? Thanks
How to resolve 403 Forbidden error when rendering sign-up view for admins?
1
Rails
Is there a way to resolve 403 Forbidden error when rendering a sign-up view for admins? This issue does not happen to the user sign-up views.
I am using Rails 6.0.3.5, Ruby 2.7.1 and Devise 4.7.3....
Alfred Montalvo Jr replied
Solved
Runaway Memory Leak/Usage with esbuild reload
2
Gems / Libraries
After watching this episode - https://gorails.com/episodes/live-reload-esbuild-rails - we implemented the live reload functionality across several of our apps. Overwhelming it's amazing!
However,...
Craig Kaminsky replied
Solved
How do I import recurring_select in Rails 6?
1
Javascript
I keep getting the following error:
Uncaught Error: Cannot find module 'recurring_select'
at webpackMissingModule (application.js:1)
at Module. (application.js:1)
at Module../app/java...
George Kettle replied
Stimulus Reflex error
0
Gems / Libraries
I am getting the an error when following the 'Introduction To Stimulus Reflex video'. What would cause this and what are possible solutions?
Uncaught Error: Cannot find module './application_contr...
William Jones posted
How do I use .vue (single file componenets) with rails 5.1 and webpack?
1
Javascript
I've been struggling with this for several days now and I can't get the component to render any data.
```
{{ greeting }} World!
module.export = {
data: function (){
return{
...
inopinatus replied