File tree Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Expand file tree Collapse file tree 3 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ function Partners() {
36
36
< Carousel >
37
37
{ carouselItems . map ( ( seq , index ) => (
38
38
< Carousel . Item key = { index } >
39
- < Row >
39
+ < Row >
40
40
{ seq . map ( ( imgIndex , i ) => (
41
41
< Col key = { i } className = "Partners-col" >
42
42
< img
Original file line number Diff line number Diff line change @@ -6,5 +6,5 @@ import './Styles/App.css';
6
6
createRoot ( document . getElementById ( 'root' ) ) . render (
7
7
< StrictMode >
8
8
< App />
9
- </ StrictMode > ,
9
+ </ StrictMode >
10
10
)
Original file line number Diff line number Diff line change 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/
4
5
export default defineConfig ( {
6
+ base : '/' ,
5
7
plugins : [ react ( ) ] ,
6
- server : {
7
- port : 4000 ,
8
+ resolve : {
9
+ alias : {
10
+ '@' : path . resolve ( __dirname , './src' ) ,
11
+ } ,
8
12
} ,
9
- } )
13
+ } ) ;
14
+
You can’t perform that action at this time.
0 commit comments