Skip to content

Commit

Permalink
➕ Add nuxt-bright in example
Browse files Browse the repository at this point in the history
  • Loading branch information
williamchong committed Dec 17, 2024
1 parent b9e4231 commit 7d34412
Show file tree
Hide file tree
Showing 3 changed files with 3,692 additions and 50 deletions.
12 changes: 5 additions & 7 deletions example/nuxt.config.js → example/nuxt.config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
export default {
target: 'static',
import { defineNuxtConfig } from '@nuxt/bridge'

export default defineNuxtConfig({
bridge: false,
// Global page headers: https://go.nuxtjs.dev/config-head
head: {
title: 'LikeCoin Wallet Connector Example',
Expand Down Expand Up @@ -30,10 +32,6 @@ export default {
// Auto import components: https://go.nuxtjs.dev/config-components
components: true,

// Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules
buildModules: [
],

// Modules: https://go.nuxtjs.dev/config-modules
modules: [
'@nuxtjs/vuetify',
Expand All @@ -49,4 +47,4 @@ export default {
'@noble/curves',
],
}
}
})
12 changes: 7 additions & 5 deletions example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate"
"dev": "nuxt2",
"build": "nuxt2 build",
"start": "nuxt2 start",
"generate": "nuxt2 generate"
},
"dependencies": {
"@cosmjs/stargate": "^0.28.10",
Expand All @@ -17,6 +17,8 @@
"react-dom": "^18.2.0"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.12.3"
"@nuxt/bridge": "^3.3.1",
"@nuxtjs/vuetify": "^1.12.3",
"nuxi": "^3.16.0"
}
}
Loading

0 comments on commit 7d34412

Please sign in to comment.