Skip to content

Commit

Permalink
chore: set up project folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
stardustmeg committed Apr 26, 2024
1 parent 84977ce commit bfcaea2
Show file tree
Hide file tree
Showing 23 changed files with 2 additions and 2 deletions.
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.
Empty file added src/shared/img/svg/.gitkeep
Empty file.
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

0 comments on commit bfcaea2

Please sign in to comment.