├── .browserslistrc
├── .eslintignore
├── .eslintrc
├── .gitignore
├── .husky
└── commit-msg
├── .prettierignore
├── .prettierrc
├── CODE_OF_CONDUCT.md
├── LICENSE
├── README.md
├── _config.js
├── commitlint.config.cjs
├── index.html
├── package.json
├── playwright.config.js
├── pnpm-lock.yaml
├── postcss.config.cjs
├── public
├── app.webmanifest
├── favicon
│ ├── favicon-192.webp
│ └── favicon-512.webp
├── og.jpg
└── sitemap.xml
├── src
├── assets
│ └── fonts
│ │ ├── Roboto-Bold.woff
│ │ ├── Roboto-Bold.woff2
│ │ ├── Roboto-Medium.woff
│ │ ├── Roboto-Medium.woff2
│ │ ├── Roboto-Regular.woff
│ │ ├── Roboto-Regular.woff2
│ │ ├── Roboto-Thin.woff
│ │ └── Roboto-Thin.woff2
├── css
│ └── global.css
├── js
│ ├── index.js
│ └── three.js
├── scss
│ └── global.scss
└── shaders
│ ├── fragment.glsl
│ └── vertex.glsl
├── tailwind.config.cjs
├── tests
└── browsers.test.js
└── vite.config.js
/.browserslistrc:
--------------------------------------------------------------------------------
1 | last 3 versions
2 | > 0.2%
3 | not dead
4 |
--------------------------------------------------------------------------------
/.eslintignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | /node_modules
3 | /.pnp
4 | .pnp.js
5 |
6 | # testing
7 | /coverage
8 | /test-results/
9 | /playwright-report/
10 | /playwright/.cache/
11 |
12 | # production
13 | /dist
14 |
15 | # various
16 | high-level-dependencies.html
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
--------------------------------------------------------------------------------
/.eslintrc:
--------------------------------------------------------------------------------
1 | {
2 | "env": {
3 | "browser": true,
4 | "es2021": true,
5 | "node": true
6 | },
7 | "extends": [
8 | "eslint:recommended",
9 | "plugin:prettier/recommended",
10 | "plugin:import/recommended",
11 | "plugin:promise/recommended",
12 | "plugin:sonarjs/recommended",
13 | "plugin:unicorn/recommended"
14 | ],
15 | "overrides": [],
16 | "parserOptions": {
17 | "ecmaVersion": "latest",
18 | "sourceType": "module"
19 | },
20 | "plugins": [
21 | "prettier",
22 | "import",
23 | "simple-import-sort",
24 | "promise",
25 | "sonarjs",
26 | "unicorn"
27 | ],
28 | "settings": {
29 | "import/resolver": {
30 | "node": {
31 | "extensions": [".js"],
32 | "moduleDirectory": ["node_modules", "src/"]
33 | }
34 | }
35 | },
36 | "ignorePatterns": ["**/*.html"],
37 | "rules": {
38 | // base
39 | "indent": ["error", 2, { "SwitchCase": 1 }],
40 | "linebreak-style": ["error", "windows"],
41 | "quotes": ["error", "single"],
42 | "semi": ["error", "always"],
43 | // end
44 |
45 | // prettier
46 | "arrow-body-style": "off",
47 | "prefer-arrow-callback": "off",
48 | "prettier/prettier": [
49 | "error",
50 | {
51 | "printWidth": 80,
52 | "tabWidth": 2,
53 | "useTabs": false,
54 | "semi": true,
55 | "singleQuote": true,
56 | "jsxSingleQuote": true,
57 | "trailingComma": "none",
58 | "bracketSpacing": true,
59 | "bracketSameLine": false,
60 | "arrowParens": "always",
61 | "endOfLine": "crlf"
62 | }
63 | ],
64 | // end prettier
65 |
66 | // simple-import-sort
67 | "simple-import-sort/imports": "error",
68 | "simple-import-sort/exports": "error",
69 | "import/first": "error",
70 | "import/newline-after-import": "error",
71 | "import/no-duplicates": "error"
72 | // end simple-import-sort
73 | }
74 | }
75 |
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | /node_modules
3 | /.pnp
4 | .pnp.js
5 |
6 | # testing
7 | /coverage
8 | /test-results/
9 | /playwright-report/
10 | /playwright/.cache/
11 |
12 | # production
13 | /dist
14 | /dist-ssr
15 |
16 | # various
17 | /playwright-report
18 | TODO.md
19 | OLD_README.md
20 |
21 | # misc
22 | .DS_Store
23 | *.pem
24 |
25 | # debug
26 | npm-debug.log*
27 | yarn-debug.log*
28 | yarn-error.log*
29 | .pnpm-debug.log*
30 |
31 | # local env files
32 | .env*.local
33 |
34 | # editor directories and files
35 | .vscode/*
36 | !.vscode/extensions.json
37 | .idea
38 | *.suo
39 | *.ntvs*
40 | *.njsproj
41 | *.sln
42 | *.sw?
43 |
--------------------------------------------------------------------------------
/.husky/commit-msg:
--------------------------------------------------------------------------------
1 | npx --no -- commitlint --edit ${1}
--------------------------------------------------------------------------------
/.prettierignore:
--------------------------------------------------------------------------------
1 | # dependencies
2 | /node_modules
3 | /.pnp
4 | .pnp.js
5 |
6 | # testing
7 | /coverage
8 | /test-results/
9 | /playwright-report/
10 | /playwright/.cache/
11 |
12 | # production
13 | /dist
14 |
15 | # various
16 | high-level-dependencies.html
17 |
18 | # misc
19 | .DS_Store
20 | *.pem
21 |
22 | # debug
23 | npm-debug.log*
24 | yarn-debug.log*
25 | yarn-error.log*
26 | .pnpm-debug.log*
27 |
28 | # local env files
29 | .env*.local
30 |
31 | # vercel
32 | .vercel
33 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "printWidth": 80,
3 | "tabWidth": 2,
4 | "useTabs": false,
5 | "semi": true,
6 | "singleQuote": true,
7 | "jsxSingleQuote": true,
8 | "trailingComma": "none",
9 | "bracketSpacing": true,
10 | "bracketSameLine": false,
11 | "arrowParens": "always",
12 | "endOfLine": "crlf",
13 | "plugins": ["prettier-plugin-tailwindcss"]
14 | }
15 |
--------------------------------------------------------------------------------
/CODE_OF_CONDUCT.md:
--------------------------------------------------------------------------------
1 | # Contributor Covenant Code of Conduct
2 |
3 | ## Our Pledge
4 |
5 | We as members, contributors, and leaders pledge to make participation in our
6 | community a harassment-free experience for everyone, regardless of age, body
7 | size, visible or invisible disability, ethnicity, sex characteristics, gender
8 | identity and expression, level of experience, education, socio-economic status,
9 | nationality, personal appearance, race, religion, or sexual identity
10 | and orientation.
11 |
12 | We pledge to act and interact in ways that contribute to an open, welcoming,
13 | diverse, inclusive, and healthy community.
14 |
15 | ## Our Standards
16 |
17 | Examples of behavior that contributes to a positive environment for our
18 | community include:
19 |
20 | - Demonstrating empathy and kindness toward other people
21 | - Being respectful of differing opinions, viewpoints, and experiences
22 | - Giving and gracefully accepting constructive feedback
23 | - Accepting responsibility and apologizing to those affected by our mistakes,
24 | and learning from the experience
25 | - Focusing on what is best not just for us as individuals, but for the
26 | overall community
27 |
28 | Examples of unacceptable behavior include:
29 |
30 | - The use of sexualized language or imagery, and sexual attention or
31 | advances of any kind
32 | - Trolling, insulting or derogatory comments, and personal or political attacks
33 | - Public or private harassment
34 | - Publishing others' private information, such as a physical or email
35 | address, without their explicit permission
36 | - Other conduct which could reasonably be considered inappropriate in a
37 | professional setting
38 |
39 | ## Enforcement Responsibilities
40 |
41 | Community leaders are responsible for clarifying and enforcing our standards of
42 | acceptable behavior and will take appropriate and fair corrective action in
43 | response to any behavior that they deem inappropriate, threatening, offensive,
44 | or harmful.
45 |
46 | Community leaders have the right and responsibility to remove, edit, or reject
47 | comments, commits, code, wiki edits, issues, and other contributions that are
48 | not aligned to this Code of Conduct, and will communicate reasons for moderation
49 | decisions when appropriate.
50 |
51 | ## Scope
52 |
53 | This Code of Conduct applies within all community spaces, and also applies when
54 | an individual is officially representing the community in public spaces.
55 | Examples of representing our community include using an official e-mail address,
56 | posting via an official social media account, or acting as an appointed
57 | representative at an online or offline event.
58 |
59 | ## Enforcement
60 |
61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be
62 | reported to the community leaders responsible for enforcement at
63 | doinel1atanasiu@gmail.com.
64 | All complaints will be reviewed and investigated promptly and fairly.
65 |
66 | All community leaders are obligated to respect the privacy and security of the
67 | reporter of any incident.
68 |
69 | ## Enforcement Guidelines
70 |
71 | Community leaders will follow these Community Impact Guidelines in determining
72 | the consequences for any action they deem in violation of this Code of Conduct:
73 |
74 | ### 1. Correction
75 |
76 | **Community Impact**: Use of inappropriate language or other behavior deemed
77 | unprofessional or unwelcome in the community.
78 |
79 | **Consequence**: A private, written warning from community leaders, providing
80 | clarity around the nature of the violation and an explanation of why the
81 | behavior was inappropriate. A public apology may be requested.
82 |
83 | ### 2. Warning
84 |
85 | **Community Impact**: A violation through a single incident or series
86 | of actions.
87 |
88 | **Consequence**: A warning with consequences for continued behavior. No
89 | interaction with the people involved, including unsolicited interaction with
90 | those enforcing the Code of Conduct, for a specified period of time. This
91 | includes avoiding interactions in community spaces as well as external channels
92 | like social media. Violating these terms may lead to a temporary or
93 | permanent ban.
94 |
95 | ### 3. Temporary Ban
96 |
97 | **Community Impact**: A serious violation of community standards, including
98 | sustained inappropriate behavior.
99 |
100 | **Consequence**: A temporary ban from any sort of interaction or public
101 | communication with the community for a specified period of time. No public or
102 | private interaction with the people involved, including unsolicited interaction
103 | with those enforcing the Code of Conduct, is allowed during this period.
104 | Violating these terms may lead to a permanent ban.
105 |
106 | ### 4. Permanent Ban
107 |
108 | **Community Impact**: Demonstrating a pattern of violation of community
109 | standards, including sustained inappropriate behavior, harassment of an
110 | individual, or aggression toward or disparagement of classes of individuals.
111 |
112 | **Consequence**: A permanent ban from any sort of public interaction within
113 | the community.
114 |
115 | ## Attribution
116 |
117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118 | version 2.0, available at
119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120 |
121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct
122 | enforcement ladder](https://github.com/mozilla/diversity).
123 |
124 | [homepage]: https://www.contributor-covenant.org
125 |
126 | For answers to common questions about this code of conduct, see the FAQ at
127 | https://www.contributor-covenant.org/faq. Translations are available at
128 | https://www.contributor-covenant.org/translations.
129 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2022 Doinel Atanasiu
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 | [node]: https://nodejs.org/en
2 | [yarn]: https://yarnpkg.com
3 | [pnpm]: https://pnpm.io
4 | [demo]: https://vite-three-js.d1a.app
5 | [license]: https://github.com/doinel1a/vite-three-js/blob/main/LICENSE
6 | [code-of-conduct]: https://github.com/doinel1a/vite-three-js/blob/main/CODE_OF_CONDUCT.md
7 | [issues]: https://github.com/doinel1a/vite-three-js/issues
8 | [pulls]: https://github.com/doinel1a/vite-three-js/pulls
9 | [browserslist]: https://browsersl.ist/#q=last+3+versions%2C%3E+0.2%25%2C+not+dead
10 | [graphviz]: https://www.graphviz.org/download
11 | [commitlint]: https://github.com/conventional-changelog/commitlint/#what-is-commitlint
12 | [webpack-three-js]: https://github.com/doinel1a/webpack-three-js
13 | [react-icon]: https://skillicons.dev/icons?i=react
14 | [ts-icon]: https://skillicons.dev/icons?i=ts
15 | [js-icon]: https://skillicons.dev/icons?i=js
16 | [tailwind-icon]: https://skillicons.dev/icons?i=tailwind
17 | [chrome-icon]: https://github.com/alrra/browser-logos/blob/main/src/chrome/chrome_64x64.png
18 | [firefox-icon]: https://github.com/alrra/browser-logos/blob/main/src/firefox/firefox_64x64.png
19 | [edge-icon]: https://github.com/alrra/browser-logos/blob/main/src/edge/edge_64x64.png
20 | [opera-icon]: https://github.com/alrra/browser-logos/blob/main/src/opera/opera_64x64.png
21 | [safari-icon]: https://github.com/alrra/browser-logos/blob/main/src/safari/safari_64x64.png
22 |
23 | # Vite Three JS — Template
24 |
25 | This boilerplate starter template is the ultimate solution to help you getting started on your project in no time, without the hassle of setting up and configuring your environment from scratch each time you start developing.
26 | It's ideal for front-end engineers who want to build modern, fast and reliable **webgl** web applications with the latest cutting edge technologies such as **Three.JS**, **GLSL**, **JavaScript**, **TailwindCSS**, **Vite**, **ESLint**, **Prettier**, **Husky** and much more!
27 |
28 | **[Demo][demo]** | **[Bug(label: bug)][issues]** | **[Feature(label: enhancement)][issues]**
29 |
30 | ## :bookmark: Table of contents
31 |
32 | - :computer: [Getting started](#computer-getting-started "Go to 'Getting started' section")
33 | - :battery: [Features](#battery-features "Go to 'Features' section")
34 | - :arrows_clockwise: [Versions](#arrows_clockwise-versions "Go to 'Versions' section")
35 | - :globe_with_meridians: [Browsers support](#globe_with_meridians-browsers-support "Go to 'Browsers support' section")
36 | - :busts_in_silhouette: [Contribute](#busts_in_silhouette-contribute "Go to 'Contribute' section")
37 | - :bookmark_tabs: [License](#bookmark_tabs-license "Go to 'License' section")
38 | - :gem: [Acknowledgements](#gem-acknowledgements "Go to 'Acknowledgements' section")
39 |
40 | ---
41 |
42 | ## :computer: Getting started
43 |
44 | ### Prerequisites:
45 |
46 | - JavaScript runtime **[node.js][node]**;
47 | - **(OPTIONAL)** Alternative package manager:
48 | - **[PNPM][pnpm]** `npm install --global pnpm`
or
49 | - **[Yarn][yarn]** `npm install --global yarn`
50 |
51 | ### Start developing:
52 |
53 | - Get the repository:
54 | - click **"Use this template"** or **"Fork"** button
alternately
55 | - **clone** the repository through your terminal:
56 | `git clone https://github.com/doinel1a/vite-three-js YOUR-PROJECT-NAME`;
57 | - Open your terminal or code editor to the path your project is located, and run:
58 | | | **NPM** | **PNPM** | **Yarn** |
59 | | ------------------------------------------------ | ----------------- | -------------- | -------------- |
60 | | To **install** the dependencies | `npm install` | `pnpm install` | `yarn install` |
61 | | To **run** the **development server** | `npm run dev` | `pnpm dev` | `yarn dev` |
62 | | To **build** your app **for production** | `npm run build` | `pnpm build` | `yarn build` |
63 | | To **preview** your **production optimized app** | `npm run preview` | `pnpm preview` | `yarn preview` |
64 |
65 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
66 |
67 | ---
68 |
69 | ## :battery: Features
70 |
71 | This repository comes 🔋 packed with:
72 |
73 | - **Three.JS**: A JavaScript library built on top of **WebGL** that provides an abstraction layer for rendering interactive 3D and 2D scenes in the web browser;
74 | - **TailwindCSS**: A utility-first CSS framework that provides predefined classes for common styles and layout patterns, allowing quick styling without writing custom CSS;
75 | - **SASS**: A CSS preprocessor that adds features such as variables, nesting, and mixins to CSS, making it easier to write and maintain large CSS codebases;
76 | - **PostCSS**: A tool for transforming CSS with JavaScript plugins, allowing to add new features to CSS and improve the development process;
77 | - **Playwright**: A library for automating web browser interactions, allowing the writing of end-to-end tests and perform browser automation tasks;
78 | - **Vite**: A build tool and development server that provides fast and efficient development and production builds for modern web applications;
79 |
80 | And with tools that enhance the development experience:
81 |
82 | - **ESLint**: A tool for enforcing coding standards and identifying potential errors in the code;
83 | - **Prettier**: A code formatter that automatically formats code to conform to a consistent style, making it easier to read and maintain;
84 | - **Husky**: A Git hook manager that allows easy set up and configuration of Git hooks, which are scripts that run at certain points in the Git workflow;
85 | - **Commitlint**: A tool for enforcing commit message conventions in Git repositories, helping to ensure consistent and informative commit messages;
86 |
87 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
88 |
89 | ---
90 |
91 | ## :arrows_clockwise: Versions
92 |
93 | This repository comes configured with 2 of the industry standards for development tools: **Webpack** and **Vite**.
94 | Both tools support **SWC (Speedy Web Compiler)**, a **Rust-based compiler**; Vite is optimized for it out of the box.
95 |
96 | ### Vite (SWC compiler)
97 |
98 | Is a simple and fast solution thanks to it's "zero-config" approach which offers a smoother development experience.
99 |
100 | | React - TypeScript | React - JavaScript | | Vanilla TypeScript | Vanilla JavaScript |
101 | | :----------------------------------------------------: | :----------------------------------------------------: | :-: | :-----------------------------: | :-------------------------: |
102 | | ![React][react-icon] & ![TS][ts-icon]
**Soon!** | ![React][react-icon] & ![JS][js-icon]
**Soon!** | | ![TS][ts-icon]
**Soon!** | ![JS][js-icon]
**/** |
103 |
104 | ### Webpack (Babel compiler)
105 |
106 | Is more a flexible solution, capable of handling complex configurations.
107 |
108 | | React - TypeScript | React - JavaScript | | Vanilla TypeScript | Vanilla JavaScript |
109 | | :----------------------------------------------------: | :----------------------------------------------------: | :-: | :-----------------------------: | :------------------------------------------------: |
110 | | ![React][react-icon] & ![TS][ts-icon]
**Soon!** | ![React][react-icon] & ![JS][js-icon]
**Soon!** | | ![TS][ts-icon]
**Soon!** | ![JS][js-icon]
**[Repo][webpack-three-js]** |
111 |
112 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
113 |
114 | ---
115 |
116 | ## :globe_with_meridians: Browsers support
117 |
118 | The provided configuration ensures **92.3%** coverage for all browsers, in particular of the following:
119 |
120 | | Chrome | Firefox | Edge | Opera | Safari |
121 | | :---------------------------: | :------------------------------: | :--------------------------: | :------------------: | ---------------------------- |
122 | | ![Google Chrome][chrome-icon] | ![Mozilla Firefox][firefox-icon] | ![Microsoft Edge][edge-icon] | ![Opera][opera-icon] | ![Apple Safari][safari-icon] |
123 |
124 | **\*** In order to support a wider percentage of browsers, update the `./.browserslistrc` configuration file:
125 |
126 | 1. `last 3 versions`: browser version;
127 | 2. `> 0.2%`: browser usage statistics;
128 | 3. `not dead`: whether the browser is officially supported;
129 |
130 | Update the configuration [here][browserslist] and check in real-time the **global browsers support**.
131 |
132 | **\* The more versions to support, larger JS and CSS bundles size will be.**
133 |
134 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
135 |
136 | ---
137 |
138 | ## :busts_in_silhouette: Contribute
139 |
140 | Contributions are what make the open source community such an amazing place to learn, inspire, and create.
141 | Any contribution is greatly appreciated: big or small, it can be documentation updates, adding new features or something bigger.
142 | Please check the [**contributing guide**][code-of-conduct] for details on how to help out and keep in mind that all commits must follow the **[conventional commit format][commitlint]**.
143 |
144 | ### How to contribute:
145 |
146 | 1. **[Get started](#computer-getting-started "Go to 'Getting started' section");**
147 | 2. **For a new feature:**
148 | 1. Create a new branch: `git checkout -b feat/NEW-FEATURE`;
149 | 2. Add your changes to the staging area: `git add PATH/TO/FILENAME.EXTENSION`;
150 | 3. Commit your changes: `git commit -m "feat: NEW FEATURE"`;
151 | 4. Push your new branch: `git push origin feat/NEW-FEATURE`;
152 | 3. **For a bug fix:**
153 | 1. Create a new branch: `git checkout -b fix/BUG-FIX`;
154 | 2. Add your changes to the staging area: `git add PATH/TO/FILENAME.EXTENSION`;
155 | 3. Commit your changes: `git commit -m "fix: BUG FIX"`;
156 | 4. Push your new branch: `git push origin fix/BUG-FIX`;
157 | 4. **Open a new [pull request][pulls];**
158 |
159 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
160 |
161 | ---
162 |
163 | ## :bookmark_tabs: License
164 |
165 | All logos and trademarks are the property of their respective owners.
166 | Everything else is distributed under the **MIT License**.
167 | See the [LICENSE][license] file for more informations.
168 |
169 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
170 |
171 | ---
172 |
173 | ## :gem: Acknowledgements
174 |
175 | Special thanks to:
176 |
177 | - [alrra](https://github.com/alrra) for [browser-logos](https://github.com/alrra/browser-logos);
178 | - [tandpfun](https://github.com/tandpfun) for [skill-icons](https://github.com/tandpfun/skill-icons);
179 |
180 | [Back to :arrow_up:](#vite-three-js--template "Back to 'Table of contents' section")
181 |
--------------------------------------------------------------------------------
/_config.js:
--------------------------------------------------------------------------------
1 | const _config = {
2 | server: {
3 | host: 'localhost',
4 | port: 3000
5 | }
6 | };
7 |
8 | export default _config;
9 |
--------------------------------------------------------------------------------
/commitlint.config.cjs:
--------------------------------------------------------------------------------
1 | module.exports = { extends: ['@commitlint/config-conventional'] };
2 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |