https://github.com/jamie-yang/vue3-boilerplate
A Vue 3 Starter Boilerplate with Webpack 5, Vue Router 4, Pinia 2, TypeScript 5, Prettier and More.
https://github.com/jamie-yang/vue3-boilerplate
boilerplate-template eject starter-template typescript vue3 vue3-project webpack5 without-vue-cli
Last synced: 5 months ago
JSON representation
A Vue 3 Starter Boilerplate with Webpack 5, Vue Router 4, Pinia 2, TypeScript 5, Prettier and More.
- Host: GitHub
- URL: https://github.com/jamie-yang/vue3-boilerplate
- Owner: Jamie-Yang
- License: mit
- Created: 2020-05-21T16:49:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-08T15:52:16.000Z (7 months ago)
- Last Synced: 2025-04-10T01:06:13.843Z (6 months ago)
- Topics: boilerplate-template, eject, starter-template, typescript, vue3, vue3-project, webpack5, without-vue-cli
- Language: JavaScript
- Homepage:
- Size: 2.04 MB
- Stars: 250
- Watchers: 8
- Forks: 87
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# vue3-boilerplate
A Vue 3 Starter Boilerplate with Vue Router 4, Pinia 2, Typescript 5, Webpack 5, Prettier and More.
**And not using the Vue CLI.**
## Architecture
```text
├─ public // static assets.
├─ service // commands and webpack configurations.
├─ src
│ ├─ assets // assets such as images or font files.
│ ├─ components // universal Vue components.
│ ├─ router // view's routers config.
│ ├─ stores // Pinia stores.
│ ├─ typings // typescript .d.ts files.
│ └─ views // pages.
```## Commands
```bash
# Start development server.
yarn dev# Compile production bundle.
yarn build
```