@visualizevalue/mint-app-base 0.1.32 → 0.1.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,13 +1,21 @@
1
1
  # Mint App
2
2
 
3
- This application is built with VueJS and Nuxt; two beautiful frameworks for building web based interfaces. Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
3
+ This application interacts with the "Mint" Factory + Collection contracts.
4
+ It enables artists to mint and sell their art on Ethereum mainnet
5
+ while maintaining full control over the contracts and with all freedom
6
+ to customize the application to their liking.
7
+
8
+ This application is built with VueJS and Nuxt;
9
+ two beautiful frameworks for building web based interfaces.
10
+ Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction)
11
+ to learn more.
4
12
 
5
13
  ## Setup
6
14
 
7
15
  Make sure to install the dependencies:
8
16
 
9
17
  ```bash
10
- yarn install
18
+ pnpm install
11
19
  ```
12
20
 
13
21
  ## Development Server
@@ -15,10 +23,10 @@ yarn install
15
23
  Start the development server on `http://mint.test:1618`:
16
24
 
17
25
  ```bash
18
- yarn dev
26
+ pnpm dev
19
27
  ```
20
28
 
21
29
  ## To-Do's
22
30
 
23
- - [ ] Refactor AppHeader titles (breadcrumb). This is quite hacky right now.
31
+ - [ ] Refactor AppHeader titles (breadcrumb).
24
32
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@visualizevalue/mint-app-base",
3
- "version": "0.1.32",
3
+ "version": "0.1.33",
4
4
  "type": "module",
5
5
  "main": "./nuxt.config.ts",
6
6
  "dependencies": {
package/pages/index.vue CHANGED
@@ -24,6 +24,10 @@ useMetaData({
24
24
  title: config.public.title,
25
25
  description: config.public.description,
26
26
  })
27
+
28
+ definePageMeta({
29
+ middleware: ['redirect-user-scope']
30
+ })
27
31
  </script>
28
32
 
29
33
  <style scoped>
File without changes