Please copy the markdown script from the textarea to your Github readme.md or any other web page you want to monitor.
+
+
+
+
+
+
+
+
+
+
+
diff --git a/www/plugins/README.md b/www/plugins/README.md
new file mode 100644
index 0000000..ca1f9d8
--- /dev/null
+++ b/www/plugins/README.md
@@ -0,0 +1,7 @@
+# PLUGINS
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains Javascript plugins that you want to run before mounting the root Vue.js application.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/plugins).
diff --git a/www/static/README.md b/www/static/README.md
new file mode 100644
index 0000000..cf00435
--- /dev/null
+++ b/www/static/README.md
@@ -0,0 +1,11 @@
+# STATIC
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your static files.
+Each file inside this directory is mapped to `/`.
+Thus you'd want to delete this README.md before deploying to production.
+
+Example: `/static/robots.txt` is mapped as `/robots.txt`.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/assets#static).
diff --git a/www/static/favicon.ico b/www/static/favicon.ico
new file mode 100644
index 0000000..52506e0
Binary files /dev/null and b/www/static/favicon.ico differ
diff --git a/www/static/report.png b/www/static/report.png
new file mode 100644
index 0000000..32a91b7
Binary files /dev/null and b/www/static/report.png differ
diff --git a/www/static/robots.txt b/www/static/robots.txt
new file mode 100644
index 0000000..49f3e46
--- /dev/null
+++ b/www/static/robots.txt
@@ -0,0 +1,3 @@
+User-agent: *
+Disallow: *
+Allow: /
\ No newline at end of file
diff --git a/www/store/README.md b/www/store/README.md
new file mode 100644
index 0000000..1972d27
--- /dev/null
+++ b/www/store/README.md
@@ -0,0 +1,10 @@
+# STORE
+
+**This directory is not required, you can delete it if you don't want to use it.**
+
+This directory contains your Vuex Store files.
+Vuex Store option is implemented in the Nuxt.js framework.
+
+Creating a file in this directory automatically activates the option in the framework.
+
+More information about the usage of this directory in [the documentation](https://nuxtjs.org/guide/vuex-store).
diff --git a/www/test/Logo.spec.js b/www/test/Logo.spec.js
new file mode 100644
index 0000000..c5fbeeb
--- /dev/null
+++ b/www/test/Logo.spec.js
@@ -0,0 +1,9 @@
+import { mount } from '@vue/test-utils'
+import Logo from '@/components/Logo.vue'
+
+describe('Logo', () => {
+ test('is a Vue instance', () => {
+ const wrapper = mount(Logo)
+ expect(wrapper.vm).toBeTruthy()
+ })
+})
diff --git a/www/tsconfig.json b/www/tsconfig.json
new file mode 100644
index 0000000..65f9bbc
--- /dev/null
+++ b/www/tsconfig.json
@@ -0,0 +1,36 @@
+{
+ "compilerOptions": {
+ "target": "ES2018",
+ "module": "ESNext",
+ "moduleResolution": "Node",
+ "lib": [
+ "ESNext",
+ "ESNext.AsyncIterable",
+ "DOM"
+ ],
+ "esModuleInterop": true,
+ "allowJs": true,
+ "sourceMap": true,
+ "strict": true,
+ "noEmit": true,
+ "experimentalDecorators": true,
+ "baseUrl": ".",
+ "paths": {
+ "~/*": [
+ "./*"
+ ],
+ "@/*": [
+ "./*"
+ ]
+ },
+ "types": [
+ "@types/node",
+ "@nuxt/types"
+ ]
+ },
+ "exclude": [
+ "node_modules",
+ ".nuxt",
+ "dist"
+ ]
+}