diff --git a/README.md b/README.md index eca5467..6abb0e2 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ **Click the "Fork" button to get started!** # Quasar App Codesandbox Template + > A Template for using Quasar on Codesandbox.io. ![Codesanbox Entry Server Screen](https://cdn.quasar.dev/codesandbox/codesandbox-entry.jpg) @@ -21,13 +22,14 @@ Once you've registered to Codesandbox, to start the template, simply click on "C Then click on `SERVER TEMPLATES` and then on the `Quasar` button. +![Codesanbox Start Server Screen](https://cdn.quasar.dev/codesandbox/codesandbox-start.jpg) ![Codesanbox Start Server Screen](https://cdn.quasar.dev/codesandbox/codesandbox-start.jpg) The server and container will start automatically. Once you make any change and save it, Codesandbox will automatically fork the sandbox for you. ## Different Modes -This template currently loads a *SPA* application mode of Quasar. +This template currently loads a _SPA_ application mode of Quasar. If you would like to work with the PWA or SSR versions of Quasar, please make the following changes to the `start` script entries in the `package.json`. @@ -57,7 +59,7 @@ Once that is done, it should take a minute or so to reload the application in th ## Quasar Repositories -* [Quasar Framework](https://github.com/quasarframework/quasar) +- [Quasar Framework](https://github.com/quasarframework/quasar) ## Contributing diff --git a/public/quasar-logo.png b/src/statics/quasar-logo.png similarity index 100% rename from public/quasar-logo.png rename to src/statics/quasar-logo.png diff --git a/src/store/store-flag.d.ts b/src/store/store-flag.d.ts new file mode 100644 index 0000000..ec274bd --- /dev/null +++ b/src/store/store-flag.d.ts @@ -0,0 +1,9 @@ +// THIS FEATURE-FLAG FILE IS AUTOGENERATED, +// REMOVAL OR CHANGES WILL CAUSE RELATED TYPES TO STOP WORKING +import "quasar/dist/types/feature-flag"; + +declare module "quasar/dist/types/feature-flag" { + interface QuasarFeatureFlags { + store: true; + } +}