Skip to content

Commit c3647ca

Browse files
committed
SANYA LOH
0 parents  commit c3647ca

19 files changed

+12144
-0
lines changed

.firebase/hosting.ZGlzdA.cache

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
index.html,1716670904969,c4fb28e00d065fdd432090ce8ffa8789f117530c12290d248f534e2db41397c2
2+
css/app.75d7c15f.css,1716670904969,90fcdb851799ce66b0b9a4ae338b2a2c18deeb7d52fc7c4ff017fc44ecb0e26d
3+
js/app.46b960a8.js,1716670904970,02caa24cd2c368753a71f864230b3846acdb015c885f159bde3a20bc7399248d
4+
favicon.ico,1716670904969,3d3d5c038cc96d71c43ffff92b9bf099f92adf9d867d0849ddcc2086c63c907b
5+
js/app.46b960a8.js.map,1716670904970,913a2f7f4121b641de87200e4c1e542c3290b5db2183beca046462f6d9e24d18
6+
img/sanya.2527793c.png,1716670904970,dd385b8b7d07b198a8879aa49c861308461f312c84d3f499dd82414add9004f9
7+
js/chunk-vendors.d76406a6.js,1716670904969,b09913d452fd715f1ff1d9a3077dfd2d71cb61ec8fce435290a91306be00dc1d
8+
js/chunk-vendors.d76406a6.js.map,1716670904970,2600a22552b9f8d6d4d93bce18aeee3df6566b41d64d153a3c51eaeb5fef3dbd
9+
media/sanya-loh.6f05911e.mp3,1716670904972,52da25fd635fbac4e87aaf5d5366e6ede012ea3056d73daf9e5a419a4bcfcfbd

.firebaserc

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"projects": {
3+
"default": "pizza-a3982"
4+
}
5+
}

.gitignore

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

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# sanya-loh-exe
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+
}

firebase.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"hosting": {
3+
"public": "dist",
4+
"ignore": [
5+
"firebase.json",
6+
"**/.*",
7+
"**/node_modules/**"
8+
],
9+
"rewrites": [
10+
{
11+
"source": "**",
12+
"destination": "/index.html"
13+
}
14+
]
15+
}
16+
}

jsconfig.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"compilerOptions": {
3+
"target": "es5",
4+
"module": "esnext",
5+
"baseUrl": "./",
6+
"moduleResolution": "node",
7+
"paths": {
8+
"@/*": [
9+
"src/*"
10+
]
11+
},
12+
"lib": [
13+
"esnext",
14+
"dom",
15+
"dom.iterable",
16+
"scripthost"
17+
]
18+
}
19+
}

0 commit comments

Comments
 (0)