Skip to content

Commit

Permalink
fix: resolve ssr out entry filename (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
hannoeru authored Sep 6, 2021
1 parent b7618a9 commit f609216
Show file tree
Hide file tree
Showing 8 changed files with 99 additions and 234 deletions.
10 changes: 5 additions & 5 deletions examples/multiple-pages-pwa/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"serve": "vite preview"
},
"dependencies": {
"vue": "^3.2.6"
"vue": "^3.2.9"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.0",
"@vue/compiler-sfc": "^3.2.6",
"@vue/compiler-sfc": "^3.2.9",
"cross-env": "^7.0.3",
"typescript": "^4.4.2",
"vite": "^2.5.1",
"vite-plugin-components": "^0.13.2",
"vite": "^2.5.3",
"vite-plugin-components": "^0.13.3",
"vite-plugin-md": "^0.11.0",
"vite-plugin-pages": "^0.17.5",
"vite-plugin-pages": "^0.18.0",
"vite-plugin-pwa": "^0.11.2",
"vite-ssg": "workspace:*",
"vue-router": "^4.0.11"
Expand Down
12 changes: 6 additions & 6 deletions examples/multiple-pages-with-store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@
"serve": "vite preview"
},
"dependencies": {
"pinia": "2.0.0-rc.6",
"vue": "^3.2.6"
"pinia": "2.0.0-rc.8",
"vue": "^3.2.9"
},
"devDependencies": {
"@nuxt/devalue": "^2.0.0",
"@vitejs/plugin-vue": "^1.6.0",
"@vue/compiler-sfc": "^3.2.6",
"@vue/compiler-sfc": "^3.2.9",
"cross-env": "^7.0.3",
"typescript": "^4.4.2",
"vite": "^2.5.1",
"vite-plugin-components": "^0.13.2",
"vite": "^2.5.3",
"vite-plugin-components": "^0.13.3",
"vite-plugin-md": "^0.11.0",
"vite-plugin-pages": "^0.17.5",
"vite-plugin-pages": "^0.18.0",
"vite-ssg": "workspace:*",
"vue-router": "^4.0.11"
}
Expand Down
2 changes: 1 addition & 1 deletion examples/multiple-pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
<script type="module" src="./src/entry.ts"></script>
</body>
</html>
10 changes: 5 additions & 5 deletions examples/multiple-pages/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
"serve": "vite preview"
},
"dependencies": {
"vue": "^3.2.6"
"vue": "^3.2.9"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.0",
"@vue/compiler-sfc": "^3.2.6",
"@vue/compiler-sfc": "^3.2.9",
"cross-env": "^7.0.3",
"typescript": "^4.4.2",
"vite": "^2.5.1",
"vite-plugin-components": "^0.13.2",
"vite": "^2.5.3",
"vite-plugin-components": "^0.13.3",
"vite-plugin-md": "^0.11.0",
"vite-plugin-pages": "^0.17.5",
"vite-plugin-pages": "^0.18.0",
"vite-ssg": "workspace:*",
"vue-router": "^4.0.11"
}
Expand Down
File renamed without changes.
6 changes: 3 additions & 3 deletions examples/single-page/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"serve": "vite preview"
},
"dependencies": {
"pinia": "^2.0.0-rc.6",
"vue": "^3.2.6"
"pinia": "^2.0.0-rc.8",
"vue": "^3.2.9"
},
"devDependencies": {
"@vitejs/plugin-vue": "^1.6.0",
"cross-env": "^7.0.3",
"typescript": "^4.4.2",
"vite": "^2.5.1",
"vite": "^2.5.3",
"vite-ssg": "workspace:*"
}
}
Loading

0 comments on commit f609216

Please sign in to comment.