This commit is contained in:
2025-12-03 22:54:42 -05:00
parent 3382a52e83
commit 9466ee7d9d
2 changed files with 4 additions and 3 deletions

View File

@@ -2,6 +2,7 @@
"name": "rmtpocketwatcher", "name": "rmtpocketwatcher",
"version": "1.0.1", "version": "1.0.1",
"description": "Real-time AUEC price tracking desktop application", "description": "Real-time AUEC price tracking desktop application",
"type": "module",
"main": "dist/main/index.js", "main": "dist/main/index.js",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@@ -1,7 +1,7 @@
const { defineConfig } = require('vite'); import { defineConfig } from 'vite';
const react = require('@vitejs/plugin-react'); import react from '@vitejs/plugin-react';
module.exports = defineConfig({ export default defineConfig({
plugins: [react()], plugins: [react()],
root: '.', root: '.',
build: { build: {