Skip to content

Commit 5c94dac

Browse files
Initial commit
0 parents  commit 5c94dac

File tree

11 files changed

+12158
-0
lines changed

11 files changed

+12158
-0
lines changed

.gitignore

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
.DS_Store
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
13+
14+
# Editor directories and files
15+
.idea
16+
.vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?

README.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Vue Basic
2+
3+
[Azure Static Web Apps](https://docs.microsoft.com/azure/static-web-apps/overview) allows you to easily build [Vue.js](https://vuejs.org/) apps in minutes. Use this repo with the [Vue quickstart](https://docs.microsoft.com/azure/static-web-apps/getting-started?tabs=vue) to build and customize a new static site.
4+
5+
## Project setup
6+
7+
```bash
8+
npm install
9+
```
10+
11+
### Compiles and hot-reloads for development
12+
13+
```bash
14+
npm run serve
15+
```
16+
17+
### Compiles and minifies for production
18+
19+
```bash
20+
npm run build
21+
```
22+
23+
### Lints and fixes files
24+
25+
```bash
26+
npm run lint
27+
```
28+
29+
### Customize configuration
30+
31+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
presets: [
3+
'@vue/cli-plugin-babel/preset'
4+
]
5+
}

0 commit comments

Comments
 (0)