Skip to content

Commit 5a60e79

Browse files
committed
Create vue project
1 parent 947560f commit 5a60e79

11 files changed

+11842
-5
lines changed

.gitignore

+14-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,22 @@
11
.DS_Store
2-
node_modules/
2+
node_modules
33
/dist
4-
/public
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
58

69
# Log files
710
npm-debug.log*
811
yarn-debug.log*
912
yarn-error.log*
13+
pnpm-debug.log*
1014

11-
# Editor settings
12-
.vscode
15+
# Editor directories and files
16+
.idea
17+
.vscode
18+
*.suo
19+
*.ntvs*
20+
*.njsproj
21+
*.sln
22+
*.sw?

README.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,24 @@
1-
portfolio-vuejs
1+
# portfolio-vuejs
2+
3+
## Project setup
4+
```
5+
npm install
6+
```
7+
8+
### Compiles and hot-reloads for development
9+
```
10+
npm run serve
11+
```
12+
13+
### Compiles and minifies for production
14+
```
15+
npm run build
16+
```
17+
18+
### Lints and fixes files
19+
```
20+
npm run lint
21+
```
22+
23+
### Customize configuration
24+
See [Configuration Reference](https://cli.vuejs.org/config/).

babel.config.js

+5
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)