Compare commits

...

10 commits

Author SHA1 Message Date
isUnknown
c9aefe7ecf #179 2025-10-15 16:17:30 +02:00
isUnknown
d590c9ac45 fix CI 2025-10-08 15:58:25 +02:00
isUnknown
186f7b80ba fix CI 2025-10-08 15:56:15 +02:00
isUnknown
1dad073ea1 #178 2025-10-08 15:54:17 +02:00
isUnknown
d7e96541a0 remove cache busting based on query string 2025-10-08 15:50:25 +02:00
isUnknown
729d72e18a fix CI 2025-10-08 15:48:35 +02:00
isUnknown
95bdf4615d fix CI 2025-10-08 15:47:45 +02:00
isUnknown
5e78e67fc8 remove cache busting 2025-10-08 15:34:53 +02:00
isUnknown
1e890cfa2e uncomment observers 2025-10-08 15:15:38 +02:00
isUnknown
4223a9d522 disable observer 2025-10-08 15:08:53 +02:00
4 changed files with 5 additions and 5 deletions

View file

@ -56,7 +56,7 @@ deploy_preprod:
build_prod:
stage: build
only:
- prod
- main
image: composer:2
script:
- apk add --no-cache nodejs npm

View file

@ -159,7 +159,7 @@ class ProjectPage extends NotificationsPage {
"physicalSample" => "échantillon physique",
];
return $stepsLabel[$this->currentStep()->value()];
return $stepsLabel[$this->currentStep()->value()] ?? "brief";
}
// public function printManagers() {

View file

@ -25,8 +25,8 @@
<meta name="theme-color" content="#FFFFFF">
<?php if (Dir::exists('assets/dist')): ?>
<script type="module" src="<?= url('assets/dist/index.js') ?>?version=<?= page('projects')->siteVersion() ?>" defer></script>
<link rel="stylesheet" href="<?= url('assets/dist/index.css') ?>?version=<?= page('projects')->siteVersion() ?>">
<script type="module" src="<?= url('assets/dist/index.js') ?>" defer></script>
<link rel="stylesheet" href="<?= url('assets/dist/index.css') ?>">
<?php else: ?>
<script type="module" src="http://localhost:5173/@vite/client" defer></script>
<script type="module" src="http://localhost:5173/src/main.js" defer></script>

View file

@ -14,7 +14,7 @@ export default defineConfig(({ mode }) => {
},
},
sourcemap: mode === 'staging',
minify: mode === 'production' ? 'esbuild' : false,
minify: mode === 'production',
},
server: {
watch: {