composer install
npm install & npm run dev
First open in your command prompt (Windows) or Terminal (Unix):
$ vagrant up
$ vagrant ssh
And then navigate to your project folder:
$ cd /vagrant/menuwaveApp
Run composer install to install dependencies:
$ composer install
Here you can go to the application with
localhost:1234
Enter exit in your virtual machine and then halt or suspend your vagrant with:
$ vagrant halt
or
$ vagrant suspend
In root, find /assets folder, then add css file and js file.
In webpack.config.js ,
Add .addEntry('<name of entry>', '<link to entry>') or .addStyleEntry('<name of entry>', '<link to entry>') where the link is the link to files in assets folder.
Run the command below to generate file css and js to public/build (This should be run everytime you edit webpack.config.js )
npm install
npm run dev
Then add new file to your html.twig template.