Compare commits
10 commits
cde0eb1943
...
c9aefe7ecf
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c9aefe7ecf | ||
|
|
d590c9ac45 | ||
|
|
186f7b80ba | ||
|
|
1dad073ea1 | ||
|
|
d7e96541a0 | ||
|
|
729d72e18a | ||
|
|
95bdf4615d | ||
|
|
5e78e67fc8 | ||
|
|
1e890cfa2e | ||
|
|
4223a9d522 |
4 changed files with 5 additions and 5 deletions
|
|
@ -56,7 +56,7 @@ deploy_preprod:
|
|||
build_prod:
|
||||
stage: build
|
||||
only:
|
||||
- prod
|
||||
- main
|
||||
image: composer:2
|
||||
script:
|
||||
- apk add --no-cache nodejs npm
|
||||
|
|
|
|||
|
|
@ -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() {
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export default defineConfig(({ mode }) => {
|
|||
},
|
||||
},
|
||||
sourcemap: mode === 'staging',
|
||||
minify: mode === 'production' ? 'esbuild' : false,
|
||||
minify: mode === 'production',
|
||||
},
|
||||
server: {
|
||||
watch: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue