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",
"version": "1.0.1",
"description": "Real-time AUEC price tracking desktop application",
"type": "module",
"main": "dist/main/index.js",
"scripts": {
"dev": "vite",

View File

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