drop codesandbox support

This commit is contained in:
Nebel 2023-03-08 18:35:30 +09:00
parent 495460e314
commit d5018a8764
4 changed files with 3 additions and 14 deletions

View file

@ -19,7 +19,7 @@
構成としては下記の通りです。 構成としては下記の通りです。
- [Hasura Cloud](https://cloud.hasura.io/) - すぐに利用可能なHasuraの環境 - [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フレームワーク - [Vue 3](https://vuejs.org/) - プログレッシブWebフレームワーク
- [Quill](https://quilljs.com/) - リッチテキストエディター - [Quill](https://quilljs.com/) - リッチテキストエディター

View file

@ -1,9 +1,8 @@
# 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) 次のリンクにアクセスすると、StackBlitzで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)
いずれかのリンクにアクセスし、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 ```vue
<!-- src/App.vue --> <!-- src/App.vue -->

View file

@ -1,3 +0,0 @@
{
"template": "nuxt"
}

View file

@ -3,11 +3,4 @@ import vue from "@vitejs/plugin-vue";
export default defineConfig({ export default defineConfig({
plugins: [vue()], plugins: [vue()],
...(process.env.CODESANDBOX_SSE === "true" && {
server: {
hmr: {
port: 443,
},
},
}),
}); });