Spark Installation
Last updated
Was this helpful?
Last updated
Was this helpful?
Make sure you have installed in your system with minimum version6.10.0
,
you can check installed version by runningnode -v
command in terminal.
If you are having older version, please install latest version from
For laravel 5.4 , the minimum version of php required is 5.6.4
and
the following php extensions are rquired
PHP >= 5.6.4
OpenSSL PHP Extension
PDO PHP Extension
Mbstring PHP Extension
Tokenizer PHP Extension
XML PHP Extension
from 5.4 onwards, Laravel team decided to move to webpack from gulp
so assets compilation differs a bit.
They introduced a new npm package for webpack calledmix
you can read more about it
install local packages
yarn install
move assets to public
npm run dev
Initially, you need to Install the Laravel Spark, For the installation of Laravel spark, Please follow the official guide, the link for which is provided below
After completing the installation of laravel spark, follow the below steps to apply the Clear skin
Remove node modules by running the following commands in your project root folder rm -rf node_modules
Extract the files from the provided zip file.
copy all the files into your spark installation folder/directory.
Run yarn install
Run npm run dev
or npm run production
or npm run watch
as per your requirement.
once, all the above steps are performed you will get a new look for your default spark website.
Eventhough you can run npm install
we suggest you to run yarn install
since the package contains yarn.lock
file which lets you get the exact version of packages that we have used.
currently, we are providing support for spark version v4.0.8
.