This commit is contained in:
Nicola Benaglia 2025-04-05 19:57:00 +02:00
parent 80791358c5
commit 716de3a409
3 changed files with 63 additions and 59 deletions

View File

@ -2,17 +2,17 @@ module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react-hooks/recommended",
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: ['react-refresh'],
ignorePatterns: ["dist", ".eslintrc.cjs"],
parser: "@typescript-eslint/parser",
plugins: ["react-refresh"],
rules: {
'react-refresh/only-export-components': [
'off',
"react-refresh/only-export-components": [
"off",
{ allowConstantExport: true },
],
},
}
};

View File

@ -1,15 +1,15 @@
import type { CapacitorConfig } from '@capacitor/cli';
import type { CapacitorConfig } from "@capacitor/cli";
const config: CapacitorConfig = {
appId: 'org.Qortal.Qortal-Hub',
appName: 'Qortal-Hub',
webDir: 'dist',
"plugins": {
"LocalNotifications": {
"smallIcon": "qort",
"iconColor": "#09b6e8"
}
}
appId: "org.Qortal.Qortal-Hub",
appName: "Qortal-Hub",
webDir: "dist",
plugins: {
LocalNotifications: {
smallIcon: "qort",
iconColor: "#09b6e8",
},
},
};
export default config;

View File

@ -1,51 +1,55 @@
/// <reference types="vitest" />
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
// Import path module for resolving file paths
import fixReactVirtualized from 'esbuild-plugin-react-virtualized'
import wasm from 'vite-plugin-wasm';
import topLevelAwait from 'vite-plugin-top-level-await';
import { VitePWA } from 'vite-plugin-pwa';
import fixReactVirtualized from "esbuild-plugin-react-virtualized";
import wasm from "vite-plugin-wasm";
import topLevelAwait from "vite-plugin-top-level-await";
import { VitePWA } from "vite-plugin-pwa";
export default defineConfig({
test: {
environment: 'jsdom',
environment: "jsdom",
globals: true,
setupFiles: ['./src/test/setup.ts']
setupFiles: ["./src/test/setup.ts"],
},
assetsInclude: ['**/*.wasm'],
plugins: [react(), wasm(), topLevelAwait(), VitePWA({
registerType: 'prompt',
manifest: {
name: 'Qortal Hub',
short_name: 'Hub',
description: 'Your easy access to the Qortal blockchain',
start_url: '/',
display: 'standalone',
theme_color: '#ffffff',
background_color: '#ffffff',
icons: [
{
src: '/qortal192.png',
sizes: '192x192',
type: 'image/png',
},
{
src: '/qortal.png',
sizes: '512x512',
type: 'image/png',
},
],
},
workbox: {
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024, // 5MB limit
disableDevLogs: true, // Suppresses logs in development
},
})],
assetsInclude: ["**/*.wasm"],
plugins: [
react(),
wasm(),
topLevelAwait(),
VitePWA({
registerType: "prompt",
manifest: {
name: "Qortal Hub",
short_name: "Hub",
description: "Your easy access to the Qortal blockchain",
start_url: "/",
display: "standalone",
theme_color: "#ffffff",
background_color: "#ffffff",
icons: [
{
src: "/qortal192.png",
sizes: "192x192",
type: "image/png",
},
{
src: "/qortal.png",
sizes: "512x512",
type: "image/png",
},
],
},
workbox: {
maximumFileSizeToCacheInBytes: 5 * 1024 * 1024, // 5MB limit
disableDevLogs: true, // Suppresses logs in development
},
}),
],
optimizeDeps: {
esbuildOptions: {
plugins: [fixReactVirtualized],
}
}
},
},
});