A streamlined Vite + Bootstrap starter kit to kickstart your web projects with style and efficiency.
- Direct Download: Grab the project files directly from the repository.
- Git: Clone the repository to your local machine:
git clone https://github.com/your-username/ViBoot-starter.git
Ensure you have Corepack enabled:
corepack enable
Then, install the required packages:
yarn install
Start the development server:
yarn dev
Your project will be accessible at http://localhost:5173/
.
Create a new HTML file within the src/pages
directory. For example, to create a product list page:
src/pages/products.html
Update the vite.config.ts
file to include your new page:
import { createMpaPlugin } from 'vite-plugin-mpa';
export default defineConfig({
plugins: [
createMpaPlugin({
// ... other configurations
pages: [
// ... existing pages
{
name: 'products',
entry: '/src/pages/products.html',
},
],
}),
],
});
With ViBoot-starter, you can quickly set up new web projects and focus on building amazing features. Let's create something awesome together!