diff --git a/.inscode b/.inscode
index 70c7853df0c162981ebd7cf119d909c807920531..9fec9576d482baaf90d2f47230ce9133cfce99d4 100644
--- a/.inscode
+++ b/.inscode
@@ -1,4 +1,5 @@
run = "npm i && npm run dev"
+language = "node"
[deployment]
build = "npm i && npm run build"
@@ -8,3 +9,6 @@ run = "npm run preview"
PATH = "/root/${PROJECT_DIR}/.config/npm/node_global/bin:/root/${PROJECT_DIR}/node_modules/.bin:${PATH}"
XDG_CONFIG_HOME = "/root/.config"
npm_config_prefix = "/root/${PROJECT_DIR}/.config/npm/node_global"
+
+[debugger]
+program = "main.js"
diff --git a/src/App.vue b/src/App.vue
index 633a5dfe4e547c48bfa93740a290ba5ba370930a..c3085d6da0d63a41494f47c8406b50447c0267d6 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -8,7 +8,7 @@ import TheWelcome from './components/TheWelcome.vue'
-
+
diff --git a/src/components/HelloWorld.vue b/src/components/HelloWorld.vue
index 1b8faac1521345513353e96050dd24d94610d432..740524b67843ebd3e4fb8a16dd83417771e1f1f7 100644
--- a/src/components/HelloWorld.vue
+++ b/src/components/HelloWorld.vue
@@ -31,13 +31,13 @@ h3 {
.greetings h1,
.greetings h3 {
- text-align: center;
+ text-align: left;
}
@media (min-width: 1024px) {
.greetings h1,
.greetings h3 {
- text-align: left;
+ text-align: center;
}
}
diff --git a/src/components/TheWelcome.vue b/src/components/TheWelcome.vue
index d3d2e7acc8a9deeb26e48169ee3cbc64d2b54f2f..662df8158d7f9663af21723ef645dac68770d445 100644
--- a/src/components/TheWelcome.vue
+++ b/src/components/TheWelcome.vue
@@ -14,9 +14,7 @@ import SupportIcon from './icons/IconSupport.vue'
Documentation
- Vue’s
- official documentation
- provides you with all information you need to get started.
+
@@ -25,16 +23,7 @@ import SupportIcon from './icons/IconSupport.vue'
Tooling
- This project is served and bundled with
- Vite. The recommended IDE
- setup is VSCode +
- Volar. If you need to test
- your components and web pages, check out
- Cypress and
- Cypress Component Testing.
-
+
More instructions are available in README.md.
diff --git a/src/main.js b/src/main.js
index 90e6400b4d8ad8aba0c1caa53874eb4b81380648..ad31741ca813e7263e9993129519c7773c689837 100644
--- a/src/main.js
+++ b/src/main.js
@@ -3,4 +3,5 @@ import App from './App.vue'
import './assets/main.css'
-createApp(App).mount('#app')
+const app = createApp(App)
+app.mount('#app')