Skip to content

Commit 1b61131

Browse files
authored
Merge branch 'main' into new
2 parents 3904a06 + 24d3a8a commit 1b61131

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

src/Components/landingpage/partners.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function Partners() {
3636
<Carousel>
3737
{carouselItems.map((seq, index) => (
3838
<Carousel.Item key={index}>
39-
<Row>
39+
<Row >
4040
{seq.map((imgIndex, i) => (
4141
<Col key={i} className="Partners-col">
4242
<img

src/main.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ import './Styles/App.css';
66
createRoot(document.getElementById('root')).render(
77
<StrictMode>
88
<App />
9-
</StrictMode>,
9+
</StrictMode>
1010
)

vite.config.js

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
1-
import { defineConfig } from 'vite'
2-
import react from '@vitejs/plugin-react'
3-
1+
import { defineConfig } from 'vite';
2+
import react from '@vitejs/plugin-react';
3+
import path from 'path';
4+
// https://vitejs.dev/config/
45
export default defineConfig({
6+
base: '/',
57
plugins: [react()],
6-
server: {
7-
port: 4000,
8+
resolve: {
9+
alias: {
10+
'@': path.resolve(__dirname, './src'),
11+
},
812
},
9-
})
13+
});
14+

0 commit comments

Comments
 (0)