We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b06ea37 commit c10e33bCopy full SHA for c10e33b
snippetTexts/canvas.html
@@ -1,3 +1,3 @@
1
- <canvas id="glcanvas" width="640" height="480">
+ <canvas id="canvas" width="640" height="480">
2
你的浏览器似乎不支持或者禁用了 HTML5 <code><canvas></code> 元素。
3
</canvas>
snippetTexts/nginx.yaml
@@ -0,0 +1,10 @@
+version: '3'
+services:
+ nginx:
4
+ image: nginx:latest
5
+ ports:
6
+ - 18000:80
7
+ volumes:
8
+ # - ./nginx.conf:/etc/nginx/nginx.conf
9
+ - .:/usr/share/nginx/html
10
+ restart: always
0 commit comments