Commit 9588f6f8 authored by Bucky Lee's avatar Bucky Lee
Browse files

create web proj

parent f507407b
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
.DS_Store
node_modules
/dist


# local env files
.env.local
.env.*.local

# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*

# Editor directories and files
.idea
.vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

osap_web/README.md

0 → 100644
+24 −0
Original line number Diff line number Diff line
# osap_web

## Project setup
```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```

### Compiles and minifies for production
```
npm run build
```

### Lints and fixes files
```
npm run lint
```

### Customize configuration
See [Configuration Reference](https://cli.vuejs.org/config/).
+5 −0
Original line number Diff line number Diff line
module.exports = {
  presets: [
    '@vue/cli-plugin-babel/preset'
  ]
}

osap_web/jsconfig.json

0 → 100644
+19 −0
Original line number Diff line number Diff line
{
  "compilerOptions": {
    "target": "es5",
    "module": "esnext",
    "baseUrl": "./",
    "moduleResolution": "node",
    "paths": {
      "@/*": [
        "src/*"
      ]
    },
    "lib": [
      "esnext",
      "dom",
      "dom.iterable",
      "scripthost"
    ]
  }
}
+19806 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading