diff --git a/docs/README.md b/docs/README.md index 42a8d5f..d73b8cf 100644 --- a/docs/README.md +++ b/docs/README.md @@ -19,7 +19,7 @@ 構成としては下記の通りです。 - [Hasura Cloud](https://cloud.hasura.io/) - すぐに利用可能なHasuraの環境 -- [StackBlitz](https://stackblitz.com/) (あるいは、[CodeSandbox](https://codesandbox.io/)) - フロントエンドのオンライン開発環境 +- [StackBlitz](https://stackblitz.com/) - フロントエンドのオンライン開発環境 - [Vue 3](https://vuejs.org/) - プログレッシブWebフレームワーク - [Quill](https://quilljs.com/) - リッチテキストエディター diff --git a/docs/create-vue-app.md b/docs/create-vue-app.md index 26c3a39..4aea691 100644 --- a/docs/create-vue-app.md +++ b/docs/create-vue-app.md @@ -1,9 +1,8 @@ # Vueアプリケーションの作成 -[![Edit on StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/kou029w/hasura-rest-hands-on/tree/main/frontend?terminal=dev&file=src/App.vue) -[![Edit on CodeSandbox](https://codesandbox.io/static/img/play-codesandbox.svg)](https://codesandbox.io/s/github/kou029w/hasura-rest-hands-on/tree/main/frontend?file=/src/App.vue) +次のリンクにアクセスすると、StackBlitzでVueアプリケーションを作成できます -いずれかのリンクにアクセスし、Vueアプリケーションを作成します。 +[![Edit on StackBlitz](https://developer.stackblitz.com/img/open_in_stackblitz.svg)](https://stackblitz.com/fork/github/kou029w/hasura-rest-hands-on/tree/main/frontend?terminal=dev&file=src/App.vue) ```vue diff --git a/frontend/sandbox.config.json b/frontend/sandbox.config.json deleted file mode 100644 index 532e6ba..0000000 --- a/frontend/sandbox.config.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "template": "nuxt" -} diff --git a/frontend/vite.config.js b/frontend/vite.config.js index cde2ef1..6ea8547 100644 --- a/frontend/vite.config.js +++ b/frontend/vite.config.js @@ -3,11 +3,4 @@ import vue from "@vitejs/plugin-vue"; export default defineConfig({ plugins: [vue()], - ...(process.env.CODESANDBOX_SSE === "true" && { - server: { - hmr: { - port: 443, - }, - }, - }), });