Skip to content

Commit

Permalink
feat(turbo): activate turbopack dev mode (#223)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdarchen authored Nov 14, 2024
1 parent bf0340f commit 60a2913
Show file tree
Hide file tree
Showing 27 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 8080",
"dev": "next dev --turbo -p 8080",
"build": "next build",
"start": "next start",
"lint": "next lint",
Expand Down
50 changes: 25 additions & 25 deletions src/components/home/4-projects/ProjectsList.tsx
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
import { ReactNode } from 'react'

import ASIaventure from '/public/img/projects/ASIAventure/ASIaventure.png'
import bASIc from '/public/img/projects/bASIc/bASIc.png'
import bigDataCFS1 from '/public/img/projects/bigDataCFS/bigDataCFS1.png'
import bigDataCFS2 from '/public/img/projects/bigDataCFS/bigDataCFS2.png'
import bigDataCFS3 from '/public/img/projects/bigDataCFS/bigDataCFS3.png'
import chronos1 from '/public/img/projects/ihmeChronos/chronos1.png'
import chronos2 from '/public/img/projects/ihmeChronos/chronos2.png'
import chronos3 from '/public/img/projects/ihmeChronos/chronos3.png'
import chronos4 from '/public/img/projects/ihmeChronos/chronos4.png'
import memory from '/public/img/projects/Memory/memory.png'
import othello from '/public/img/projects/Othello/othello.png'
import pic1 from '/public/img/projects/PIC/pic-1.png'
import pic2 from '/public/img/projects/PIC/pic-2.png'
import pic3 from '/public/img/projects/PIC/pic-3.png'
import elec from '/public/img/projects/PortableConsole/console1.png'
import reacli1 from '/public/img/projects/reacli/reacli1.png'
import reacli2 from '/public/img/projects/reacli/reacli2.png'
import reacli3 from '/public/img/projects/reacli/reacli3.png'
import reacli4 from '/public/img/projects/reacli/reacli4.png'
import screenBlurrer from '/public/img/projects/ScreenBlurrer/blurrer.png'
import sosTouriste1 from '/public/img/projects/SOSTouriste/sosTouriste1.png'
import sosTouriste2 from '/public/img/projects/SOSTouriste/sosTouriste2.png'
import whatsASI1 from '/public/img/projects/WhatsASI/ir_whatsasi.png'
import whatsASI2 from '/public/img/projects/WhatsASI/ir_whatsasi_connexion.png'
import whatsASI3 from '/public/img/projects/WhatsASI/ir_whatsasi_filtres.png'
import ASIaventure from './projects/ASIAventure/ASIaventure.png'
import bASIc from './projects/bASIc/bASIc.png'
import bigDataCFS1 from './projects/bigDataCFS/bigDataCFS1.png'
import bigDataCFS2 from './projects/bigDataCFS/bigDataCFS2.png'
import bigDataCFS3 from './projects/bigDataCFS/bigDataCFS3.png'
import chronos1 from './projects/ihmeChronos/chronos1.png'
import chronos2 from './projects/ihmeChronos/chronos2.png'
import chronos3 from './projects/ihmeChronos/chronos3.png'
import chronos4 from './projects/ihmeChronos/chronos4.png'
import memory from './projects/Memory/memory.png'
import othello from './projects/Othello/othello.png'
import pic1 from './projects/PIC/pic-1.png'
import pic2 from './projects/PIC/pic-2.png'
import pic3 from './projects/PIC/pic-3.png'
import elec from './projects/PortableConsole/console1.png'
import reacli1 from './projects/reacli/reacli1.png'
import reacli2 from './projects/reacli/reacli2.png'
import reacli3 from './projects/reacli/reacli3.png'
import reacli4 from './projects/reacli/reacli4.png'
import screenBlurrer from './projects/ScreenBlurrer/blurrer.png'
import sosTouriste1 from './projects/SOSTouriste/sosTouriste1.png'
import sosTouriste2 from './projects/SOSTouriste/sosTouriste2.png'
import whatsASI1 from './projects/WhatsASI/ir_whatsasi.png'
import whatsASI2 from './projects/WhatsASI/ir_whatsasi_connexion.png'
import whatsASI3 from './projects/WhatsASI/ir_whatsasi_filtres.png'

export type Project = {
key: string
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes

0 comments on commit 60a2913

Please sign in to comment.