Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(RSS-ECOMM-1_02): set up project folder structure #51

Merged
merged 3 commits into from
Apr 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

πŸ‘€ Example: `feat(RSS-ECOMM-1_01): description`

## PR Decription πŸ§™β€β™‚οΈ
## PR Description πŸ§™β€β™‚οΈ

_Add a description of the changes in the PR_ πŸ€”

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="./src/img/favicon.ico" />
<link rel="icon" type="image/x-icon" href="./src/shared/img/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>eCommerce Application</title>
<script type="module" src="./src/main.ts" defer></script>
Expand Down
Empty file added src/app/App/.gitkeep
Empty file.
Empty file added src/app/Router/.gitkeep
Empty file.
Empty file added src/app/styles/.gitkeep
Empty file.
Empty file.
Empty file.
Empty file.
Empty file added src/pages/LoginPage/.gitkeep
Empty file.
Empty file added src/pages/MainPage/.gitkeep
Empty file.
Empty file added src/pages/NotFoundPage/.gitkeep
Empty file.
Empty file.
Empty file added src/shared/API/.gitkeep
Empty file.
Empty file.
File renamed without changes.
256 changes: 256 additions & 0 deletions src/shared/img/svg/cat.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file added src/shared/lib/Store/.gitkeep
Empty file.
Empty file added src/shared/types/.gitkeep
Empty file.
Empty file added src/shared/utils/.gitkeep
Empty file.
Empty file added src/widget/Footer/.gitkeep
Empty file.
Empty file added src/widget/Header/.gitkeep
Empty file.
Empty file added src/widget/LoginForm/.gitkeep
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import createSvgSpritePlugin from 'vite-plugin-svg-spriter';
import tsconfigPaths from 'vite-tsconfig-paths';

const SRC_PATH = path.resolve(__dirname, 'src');
const SVG_FOLDER_PATH = path.resolve(SRC_PATH, 'img');
const SVG_FOLDER_PATH = path.resolve(SRC_PATH, 'shared/img/svg');

export default {
base: '',
Expand Down