This website/template is powered with Jigsaw, Tailwind3 and Alpine3.
mkdir jigsaw &&
cd .\jigsaw\
composer require tightenco/jigsaw
vendor/bin/jigsaw init
npm i &&
npm run prod
Preview:
vendor/bin/jigsaw serve production
Or
npm i &&
npm run dev &&
vendor/bin/jigsaw serve
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
module.exports = {
content: [
// ...
],
// ...
};
I don't understand the issue neither the solution! But this fixes it.
npm i fast-glob
module.exports = {
content: require("fast-glob").sync([
// ..
]),
// ...
};
npm install -g browser-sync
npm run watch
Now live preview the website on http://localhost:3000
Deploy on github pages ref
Commit the
build_production
folder to your repository.Use
git subtree push
to push just thebuild_production
folder to yourgh-pages
branch
git subtree push --prefix build_production origin gh-pages