Skip to content

Commit deb7f08

Browse files
committed
Initial commit
0 parents  commit deb7f08

20 files changed

Lines changed: 2022 additions & 0 deletions

.browserslistrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
> 1%
2+
last 2 versions
3+
not dead
4+
not ie 11

.editorconfig

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[*.{js,jsx,ts,tsx,vue}]
2+
indent_style = space
3+
indent_size = 2
4+
trim_trailing_whitespace = true
5+
insert_final_newline = true

.eslintrc.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true,
5+
},
6+
extends: [
7+
'plugin:vue/vue3-essential',
8+
'eslint:recommended',
9+
],
10+
}

.github/workflows/main.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# This is a basic workflow to help you get started with Actions
2+
3+
name: Build Vue
4+
on: [push]
5+
jobs:
6+
build_vue:
7+
runs-on: ubuntu-latest
8+
name: Build Vue
9+
steps:
10+
- uses: actions/checkout@v2
11+
- id: Build-Vue
12+
uses: xRealNeon/VuePagesAction@1.0.1
13+
with:
14+
username: "ConstructFund"
15+
reponame: "c3-effects-concat"
16+
token: ${{ secrets.GITHUB_TOKEN }} # Leave this line unchanged

.gitignore

Lines changed: 23 additions & 0 deletions
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

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# default
2+
3+
## Project setup
4+
5+
```
6+
# yarn
7+
yarn
8+
9+
# npm
10+
npm install
11+
12+
# pnpm
13+
pnpm install
14+
```
15+
16+
### Compiles and hot-reloads for development
17+
18+
```
19+
# yarn
20+
yarn dev
21+
22+
# npm
23+
npm run dev
24+
25+
# pnpm
26+
pnpm dev
27+
```
28+
29+
### Compiles and minifies for production
30+
31+
```
32+
# yarn
33+
yarn build
34+
35+
# npm
36+
npm run build
37+
38+
# pnpm
39+
pnpm build
40+
```
41+
42+
### Customize configuration
43+
44+
See [Configuration Reference](https://vitejs.dev/config/).

index.html

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

jsconfig.json

Lines changed: 19 additions & 0 deletions
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+
}

package.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"name": "construct-fund-website",
3+
"version": "0.0.0",
4+
"scripts": {
5+
"dev": "vite",
6+
"build": "vite build",
7+
"preview": "vite preview",
8+
"lint": "eslint . --fix --ignore-path .gitignore"
9+
},
10+
"dependencies": {
11+
"@mdi/font": "7.0.96",
12+
"roboto-fontface": "*",
13+
"vue": "^3.2.0",
14+
"vuetify": "^3.0.0",
15+
"webfontloader": "^1.0.0"
16+
},
17+
"devDependencies": {
18+
"@vitejs/plugin-vue": "^3.0.3",
19+
"eslint": "^8.22.0",
20+
"eslint-plugin-vue": "^9.3.0",
21+
"vite": "^4.2.0",
22+
"vite-plugin-vuetify": "^1.0.0"
23+
}
24+
}

0 commit comments

Comments
 (0)