diff --git a/src/templates/clean/boot.ts b/src/templates/clean/boot.ts index b4cf965..3bc044c 100644 --- a/src/templates/clean/boot.ts +++ b/src/templates/clean/boot.ts @@ -15,8 +15,8 @@ export default function ({ app }: { app: App; }) { }); } -// set to `true` to not show the top Qusar Settings bar -// mult be set to `true` if you do not use or load quasar in `boot.ts` +// set to `true` to not show the top Quasar Settings bar +// if you do not load or use Quasar in `boot.ts` you must set this to `true` export const NO_SETTINGS = false; // set to `true` if you do not want your code to be wrapped in `Suspense` component diff --git a/src/templates/full/boot.ts b/src/templates/full/boot.ts index 74cee05..75a9ad2 100644 --- a/src/templates/full/boot.ts +++ b/src/templates/full/boot.ts @@ -78,8 +78,8 @@ export default function ({ app }: { app: App; }) { }); } -// set to `true` to not show the top Qusar Settings bar -// mult be set to `true` if you do not use or load quasar in `boot.ts` +// set to `true` to not show the top Quasar Settings bar +// if you do not load or use Quasar in `boot.ts` you must set this to `true` export const NO_SETTINGS = false; // set to `true` if you do not want your code to be wrapped in `Suspense` component diff --git a/src/templates/full/main.vue b/src/templates/full/main.vue deleted file mode 100644 index 15a9c87..0000000 --- a/src/templates/full/main.vue +++ /dev/null @@ -1,43 +0,0 @@ - - - - - diff --git a/src/templates/full/tsconfig.json b/src/templates/full/tsconfig.json deleted file mode 100644 index e5d9ad7..0000000 --- a/src/templates/full/tsconfig.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "compilerOptions": { - "allowJs": true, - "checkJs": true, - "jsx": "preserve", - "target": "ESNext", - "module": "ESNext", - "moduleResolution": "Bundler", - "types": [ - "quasar/dist/types/index.d.ts" - ] - }, - "vueCompilerOptions": { - "target": 3.3 - }, - "exclude": [ - "node_modules" - ] -}