├── .gitignore
├── LICENSE.md
├── README.md
├── app.vue
├── assets
└── scss
│ └── main.scss
├── nuxt.config.ts
├── package-lock.json
├── package.json
├── pages
└── index.vue
├── plugins
└── useBootstrap.client.ts
└── tsconfig.json
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | *.log
3 | .nuxt
4 | nuxt.d.ts
5 | .output
6 | .env
--------------------------------------------------------------------------------
/LICENSE.md:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) [year] [fullname]
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Nuxt 3 Bootstrap 5 starter with customizable variables configured
2 |
3 | A optimized and barebones starterkit that removes a lot of the early setup of a new bootstrap project.
4 |
5 | Included:
6 | - Nuxt 3
7 | - Bootstrap 5 optimized installation and example variables overwritten + colors added to the scss theme (see main.scss)
8 | - Autoprefixer
9 | - Fiber
10 | - PostCSS
11 | - Sass
12 |
13 | ## Setup
14 |
15 | Make sure to install the dependencies
16 |
17 | ```bash
18 | npm install
19 | ```
20 |
21 | ## Development
22 |
23 | Start the development server on http://localhost:3000
24 |
25 | ```bash
26 | npm dev
27 | ```
28 |
29 | ## Production
30 |
31 | Build the application for production:
32 |
33 | ```bash
34 | npm build
35 | ```
36 |
37 | Checkout the [deployment documentation](https://v3.nuxtjs.org/docs/deployment).
38 |
39 | ## License
40 |
41 | The code in this starter project is licensed under the MIT license. However, please note that any code that you add to this project will not be subject to this license and you are free to choose an appropriate open source license for your own code. Please make sure to update the license file accordingly and include a copy of the license in your project's repository.
42 |
43 |
--------------------------------------------------------------------------------
/app.vue:
--------------------------------------------------------------------------------
1 |
2 |