An example website made for Modern Web Development Guided Project, one of the courses in NTNU CSIE Camp 2022.
- Install Node.js 16+
- Install PNPM globally (optional)
npm i -g pnpm
- Install the dependencies
pnpm i
(if you installed PNPM globally)- or
npx pnpm i
- Run the development server
pnpm dev
(if you installed PNPM globally)- or
npm run dev
Now, you should be able to visit the website at http://localhost:3000
.
pnpm build
(if you installed PNPM globally)- or
npm run build
The built website will be placed in dist/
.
And you can use pnpm preview
(npm run preview
) to preview the built website in your browser.
- Vue 3 (JS Framework)
- TailwindCSS (CSS Framework)
- Vue Router (SPA Router)
- Vite (Dev Server, Bundler)