@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.
@@ -1,7 +0,0 @@
1
- /* @tailwind base;
2
- @tailwind components;
3
- @tailwind utilities; */
4
-
5
- @layer components {
6
-
7
- }
@@ -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
- })