Skip to content

Commit 48fbdcc

Browse files
committed
vue init commit
1 parent 9217532 commit 48fbdcc

File tree

16 files changed

+1614
-2
lines changed

16 files changed

+1614
-2
lines changed

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,3 +135,22 @@ bh_unicode_properties.cache
135135
# https://packagecontrol.io/packages/sublime-github
136136
GitHub.sublime-settings
137137

138+
# Logs
139+
logs
140+
*.log
141+
npm-debug.log*
142+
yarn-debug.log*
143+
yarn-error.log*
144+
pnpm-debug.log*
145+
lerna-debug.log*
146+
147+
node_modules
148+
.DS_Store
149+
dist
150+
dist-ssr
151+
coverage
152+
*.local
153+
154+
/cypress/videos/
155+
/cypress/screenshots/
156+

README.md

Lines changed: 28 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1-
# omm-web
1+
# omm-front
22

3-
Web of Oh My Mailbox
3+
This template should help get you started developing with Vue 3 in Vite.
4+
5+
## Recommended IDE Setup
6+
7+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
8+
9+
## Customize configuration
10+
11+
See [Vite Configuration Reference](https://vitejs.dev/config/).
12+
13+
## Project Setup
14+
15+
```sh
16+
npm install
17+
```
18+
19+
### Compile and Hot-Reload for Development
20+
21+
```sh
22+
npm run dev
23+
```
24+
25+
### Compile and Minify for Production
26+
27+
```sh
28+
npm run build
29+
```

index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)