@nosana/kit 1.0.7 → 1.0.9
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/dist/services/SolanaService.js +23 -1
- package/package.json +7 -2
- package/.gitlab-ci.yml +0 -54
- package/.prettierignore +0 -17
- package/eslint.config.js +0 -47
- package/examples/browser/.gitlab-ci.yml +0 -78
- package/examples/browser/FEATURES.md +0 -141
- package/examples/browser/QUICK_START.md +0 -76
- package/examples/browser/README.md +0 -182
- package/examples/browser/app.vue +0 -1840
- package/examples/browser/assets/css/main.css +0 -7
- package/examples/browser/nuxt.config.ts +0 -30
- package/examples/browser/package-lock.json +0 -12230
- package/examples/browser/package.json +0 -31
- package/examples/browser/public/favicon.ico +0 -0
- package/examples/browser/public/robots.txt +0 -2
- package/examples/browser/start.sh +0 -38
- package/examples/browser/tailwind.config.js +0 -26
- package/examples/node/README.md +0 -261
- package/examples/node/example-keypair.json +0 -1
- package/examples/node/monitor.ts +0 -143
- package/examples/node/nos-service.ts +0 -117
- package/examples/node/package-lock.json +0 -589
- package/examples/node/package.json +0 -20
- package/examples/node/post-job.ts +0 -160
- package/examples/node/retrieve.ts +0 -18
- package/examples/node/set-wallet.ts +0 -87
- package/examples/node/stake-program.ts +0 -84
- package/scripts/generate-clients.ts +0 -33
- package/vitest.config.ts +0 -31
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
2
|
-
export default defineNuxtConfig({
|
|
3
|
-
compatibilityDate: '2025-05-30',
|
|
4
|
-
devtools: { enabled: true },
|
|
5
|
-
modules: [
|
|
6
|
-
'@nuxtjs/tailwindcss'
|
|
7
|
-
],
|
|
8
|
-
css: ['~/assets/css/main.css'],
|
|
9
|
-
ssr: false, // Disable SSR for better compatibility with Solana SDK
|
|
10
|
-
nitro: {
|
|
11
|
-
experimental: {
|
|
12
|
-
wasm: true
|
|
13
|
-
}
|
|
14
|
-
},
|
|
15
|
-
vite: {
|
|
16
|
-
define: {
|
|
17
|
-
global: 'globalThis',
|
|
18
|
-
},
|
|
19
|
-
resolve: {
|
|
20
|
-
alias: {
|
|
21
|
-
// Force gill to use browser build instead of node build
|
|
22
|
-
'gill/node': 'gill/browser',
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
optimizeDeps: {
|
|
26
|
-
include: ['@nosana/kit'],
|
|
27
|
-
exclude: ['gill/node']
|
|
28
|
-
},
|
|
29
|
-
}
|
|
30
|
-
})
|