add image docker
All checks were successful
Deploy / Build and Deploy to Production (push) Successful in 16s
All checks were successful
Deploy / Build and Deploy to Production (push) Successful in 16s
This commit is contained in:
parent
a7918a35e2
commit
3cc4da63fb
3 changed files with 26 additions and 18 deletions
|
|
@ -1,5 +1,5 @@
|
|||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import { defineConfig } from 'vite';
|
||||
import vue from '@vitejs/plugin-vue';
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
|
|
@ -16,11 +16,14 @@ export default defineConfig({
|
|||
assetFileNames: (assetInfo) => {
|
||||
// Le CSS principal doit s'appeler index.css pour correspondre à header.php
|
||||
if (assetInfo.name && assetInfo.name.endsWith('.css')) {
|
||||
return 'index.css'
|
||||
return 'index.css';
|
||||
}
|
||||
return '[name].[ext]'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
return '[name].[ext]';
|
||||
},
|
||||
},
|
||||
},
|
||||
build: {
|
||||
minify: false,
|
||||
},
|
||||
},
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue