-
Hello, up till recently, i never had the node_modules folder in my production server. recently, maybe after an nom update, i see this folder copied. thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You need to run: npm ci # does the creation of the node_modules
npm run build # creates public/build/... After the second command, the node_modules is useless, feel free to nuke it. 👍 If you are using the old frontend on V6 you are missing out a lot. |
Beta Was this translation helpful? Give feedback.
-
Thank you! This is what I suspected (i'm using gentoo and maintaining the ebuild myself, so I had a little doubt about this folder) |
Beta Was this translation helpful? Give feedback.
You need to run:
After the second command, the node_modules is useless, feel free to nuke it. 👍
If you are using the old frontend on V6 you are missing out a lot.