Project structure
Silicon
Root project directory containing source files, documentation, and configuration files.
src
Contains all source files used during development.
src / css
Tailwind CSS source files. Global theme variables are defined in
_config.css
using the @theme directive.
src / js
JavaScript source files written as ES modules. These files are bundled by Vite into optimized production assets.
src / *.html
HTML files for each page in the template. These files are processed by Vite and included in the final build.
public / images
Static assets that are copied directly to the production build without processing.
dist
Production-ready files generated by npm run build.
This folder is used for deployment.
vite.config.js
Vite configuration files.
package.json
Project configuration files. These define dependencies, npm scripts, and Vite build settings.