From 082f82d60e689d25a56de718dc2a547d0fb2c63b Mon Sep 17 00:00:00 2001 From: Miguel Arcangel Date: Sat, 30 Sep 2023 13:47:30 -0500 Subject: [PATCH] resolving errors --- src/components/Calculator.jsx | 2 +- vite.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/Calculator.jsx b/src/components/Calculator.jsx index 09d1c43..f9e490f 100644 --- a/src/components/Calculator.jsx +++ b/src/components/Calculator.jsx @@ -1,6 +1,6 @@ import React, { useEffect, useState } from 'react' import { BoxCalculator } from './BoxCalculator' -import { BoxResult } from './boxResult' +import { BoxResult } from './BoxResult' import { getValueCrypto } from '../services/getValueCrypto' export default function Calculator () { diff --git a/vite.config.js b/vite.config.js index 27e658e..d1ecaa0 100644 --- a/vite.config.js +++ b/vite.config.js @@ -4,5 +4,5 @@ import react from '@vitejs/plugin-react-swc' // https://vitejs.dev/config/ export default defineConfig({ plugins: [react()], - base: './' + base: '/' })