Skip to content

Commit 6832ce9

Browse files
docs: update vue quickstart (#2062)
* refactor: migrate Vue.js example to Vite and update dependencies * docs: update Vue.js integration guide with Vite and latest SDK * chore: format * fix: update Vue.js example start script for Vite * fix:render correct component for test * fix: set vite env for test * fix: logout url * fix: change ory port * fix: ory url env
1 parent 4922c89 commit 6832ce9

File tree

23 files changed

+3366
-20644
lines changed

23 files changed

+3366
-20644
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,30 @@
1-
node_modules/
2-
dist/
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
.DS_Store
12+
dist
13+
dist-ssr
14+
coverage
15+
*.local
16+
17+
/cypress/videos/
18+
/cypress/screenshots/
19+
20+
# Editor directories and files
21+
.vscode/*
22+
!.vscode/extensions.json
23+
.idea
24+
*.suo
25+
*.ntvs*
26+
*.njsproj
27+
*.sln
28+
*.sw?
29+
30+
*.tsbuildinfo
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"recommendations": ["Vue.volar"]
3+
}

code-examples/protect-page-login/vue/LICENSE

-201
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# ory-vue-demo
2+
3+
This template should help get you started developing with Vue 3 in Vite.
4+
5+
## Recommended IDE Setup
6+
7+
[VSCode](https://code.visualstudio.com/) +
8+
[Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and
9+
disable Vetur).
10+
11+
## Customize configuration
12+
13+
See [Vite Configuration Reference](https://vite.dev/config/).
14+
15+
## Project Setup
16+
17+
```sh
18+
npm install
19+
```
20+
21+
### Compile and Hot-Reload for Development
22+
23+
```sh
24+
npm run dev
25+
```
26+
27+
### Compile and Minify for Production
28+
29+
```sh
30+
npm run build
31+
```

code-examples/protect-page-login/vue/babel.config.js

-6
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!doctype html>
2+
<html lang="">
3+
<head>
4+
<meta charset="UTF-8" />
5+
<link rel="icon" href="/favicon.ico" />
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7+
<title>Vite App</title>
8+
</head>
9+
<body>
10+
<div id="app"></div>
11+
<script type="module" src="/src/main.js"></script>
12+
</body>
13+
</html>
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
{
22
"compilerOptions": {
3-
"target": "es5",
4-
"module": "esnext",
5-
"baseUrl": "./",
6-
"moduleResolution": "node",
73
"paths": {
8-
"@/*": ["src/*"]
9-
},
10-
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
11-
}
4+
"@/*": ["./src/*"]
5+
}
6+
},
7+
"exclude": ["node_modules", "dist"]
128
}

0 commit comments

Comments
 (0)