You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+7-12Lines changed: 7 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,9 @@ This starter template includes samples of common page types, and comes pre-confi
16
16
17
17
- A fully responsive navigation bar
18
18
-[Tailwind CSS](https://tailwindcss.com/), a utility CSS framework that allows you to customize your design without touching a line of CSS
19
-
-[Purgecss](https://www.purgecss.com/) to remove unused selectors from your CSS, resulting in smaller CSS files
20
-
- Syntax highlighting using [highlight.js](https://highlightjs.org/)
19
+
- Syntax highlighting using [Prism](https://prismjs.com/)
21
20
- A script that automatically generates a `sitemap.xml` file
22
21
- A custom 404 page
23
-
- A component for accepting signups for a [Mailchimp](https://mailchimp.com/) newsletter
24
22
- A sample contact form
25
23
- A search bar powered by [Fuse.js](http://fusejs.io/) and [Alpine.js](https://alpinejs.dev/), which indexes your content automatically and requires zero configuration
26
24
@@ -71,13 +69,11 @@ featured: true
71
69
72
70
### Adding Assets
73
71
74
-
Any assets that need to be compiled (such as JavaScript, Less, or Sass files) can be added to the `source/_assets/` directory, and Laravel Mix will process them when running `npm run dev` or `npm run prod`. The processed assets will be stored in `/source/assets/build/` (note there is no underscore on this second `assets` directory).
75
-
76
-
Then, when Jigsaw builds your site, the entire `/source/assets/` directory containing your built files (and any other directories containing static assets, such as images or fonts, that you choose to store there) will be copied to the destination build folders (`build_local`, on your local machine).
72
+
Any assets that need to be compiled, such as JavaScript or CSS using Tailwind, can be added to the `source/_assets/` directory. Vite will process them when running `npm run dev` or `npm run build`, and the processed assets will be stored in `/build_local` or `/build_production`, respectively.
77
73
78
74
Files that don't require processing (such as images and fonts) can be added directly to `/source/assets/`.
79
75
80
-
[Read more about compiling assets in Jigsaw using Laravel Mix.](http://jigsaw.tighten.co/docs/compiling-assets/)
76
+
[Read more about compiling assets in Jigsaw using Vite.](http://jigsaw.tighten.co/docs/compiling-assets/)
81
77
82
78
---
83
79
@@ -86,10 +82,9 @@ Files that don't require processing (such as images and fonts) can be added dire
86
82
Now that you’ve edited your configuration variables and know how to customize your styles and content, let’s build the site.
0 commit comments