Skip to content

Latest commit

 

History

History
169 lines (127 loc) · 4.27 KB

README.md

File metadata and controls

169 lines (127 loc) · 4.27 KB

image

Static Badge Static Badge

"Vue is a JavaScript framework for building user interfaces. It builds on top of standard HTML, CSS, and JavaScript and provides a declarative, component-based programming model that helps you efficiently develop user interfaces of any complexity."

This guide provides a first-hand experience on building a Vue project using Vite + Tailwind CSS and deploying it on GitHub Pages.

🛠️ Installation

1. Create your project. You can use the official guide or use Vite like this.

# terminal
npm create vite@latest project_name -- --template vue
cd project_name

2. Install Tailwind CSS.

# terminal
npm install -D tailwindcss postcss autoprefixer
npx tailwindcss init -p

3. Configure template paths.

// tailwind.config.js
/** @type {import('tailwindcss').Config} */
export default {
  content: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
  theme: {
    extend: {},
  },
  plugins: [],
};

4. Add the Tailwind directives.

/* ./src/style.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

5. Start your build process.

# terminal
npm run dev

6. Happy coding. ^^

<!-- App.vue -->
<template>
  <h1 class="text-3xl font-bold underline">Hello world!</h1>
</template>

🗂️ File Structure

Sample project structure.

my-vue-app/
├── public/
│   ├── favicon.ico
│   └── ...
├── src/
│   ├── assets/
│   │   └── logo.png
│   ├── components/
│   │   └── HelloWorld.vue
│   ├── views/
│   │   └── Home.vue
│   ├── App.vue
│   ├── main.js
│   └── router.js
├── .gitignore
├── index.html
├── package.json
├── README.md
└── vite.config.js

🛫 How to deploy to GitHub Pages

Deploying to github pages is totally up to you, be it through GitHub Actions, or via gh-pages package, or manually.

Note

Also take note that GitHub Pages have limitations, it's free, yes, but it has a limit.

❗ via package ❗

1. Install gh-pages package.

npm install gh-pages --save-dev

2. Add base path to your repo in vite.config.js.

// vite.config.js
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [vue()],
  base: '/vue', // repo-name
});

3. Add deploy to your scripts.

{
  "scripts": {
    "deploy": "npm run build && gh-pages -d dist"
  }
}

4. Create and configure a new branch for gh-pages.

Important

Make sure that you have committed your changes before doing this. All untracked and staged files may be deleted.

I like to do this manually. If there is some automated way, feel free to let me know by any means.

git checkout --orphan gh-pages
git reset --hard
git commit --allow-empty -m 'commit_message'
git push origin gh-pages

5. Publish the production build.

npm run deploy

❗ via manually configuring github pages settings ❗

1. Create your project. Start coding your project, either use a framework like React, Vue, or not.

2. Publish production build to GitHub. Push your production build to your github repo. After that, check if your index.html file is uploaded, since it is one of the core files needed for your website to work.

3. Configure your GitHub Pages on repo Settings. Navigate to Settings > Pages > Build and deployment. Make sure the Source says 'Deploy from a branch', and then configure the Branch settings and change it to your branch with the files.


🌎 kerbethecoder
📫 krby.cnts@gmail.com
📌 July 31, 2024