Initial version of smartbooking generated by generator-jhipster@9.0.0-beta.0

This commit is contained in:
2025-12-10 16:41:34 +01:00
commit e4b8486f4b
376 changed files with 44072 additions and 0 deletions

68
vite.config.ts Normal file
View File

@@ -0,0 +1,68 @@
import { URL, fileURLToPath } from 'node:url';
import vue from '@vitejs/plugin-vue';
import { defineConfig, normalizePath } from 'vite';
import { viteStaticCopy } from 'vite-plugin-static-copy';
const { getAbsoluteFSPath } = await import('swagger-ui-dist');
const swaggerUiPath = getAbsoluteFSPath();
// eslint-disable-next-line prefer-const
let config = defineConfig({
plugins: [
vue(),
viteStaticCopy({
targets: [
{
src: [
`${normalizePath(swaggerUiPath)}/*.{js,css,html,png}`,
`!${normalizePath(swaggerUiPath)}/**/index.html`,
normalizePath(fileURLToPath(new URL('./dist/axios.min.js', import.meta.resolve('axios/package.json')))),
normalizePath(fileURLToPath(new URL('./src/main/webapp/swagger-ui/index.html', import.meta.url))),
],
dest: 'swagger-ui',
},
],
}),
],
root: fileURLToPath(new URL('./src/main/webapp/', import.meta.url)),
publicDir: fileURLToPath(new URL('./build/resources/main/static/public', import.meta.url)),
cacheDir: fileURLToPath(new URL('./build/.vite-cache', import.meta.url)),
build: {
emptyOutDir: true,
outDir: fileURLToPath(new URL('./build/resources/main/static/', import.meta.url)),
rollupOptions: {
input: {
app: fileURLToPath(new URL('./src/main/webapp/index.html', import.meta.url)),
},
},
},
resolve: {
alias: {
vue: 'vue/dist/vue.esm-bundler.js',
'@': fileURLToPath(new URL('./src/main/webapp/app/', import.meta.url)),
'@content': fileURLToPath(new URL('./src/main/webapp/content/', import.meta.url)),
},
},
define: {
I18N_HASH: '"generated_hash"',
SERVER_API_URL: '"/"',
APP_VERSION: `"${process.env.APP_VERSION ? process.env.APP_VERSION : 'DEV'}"`,
},
server: {
host: true,
port: 9000,
proxy: Object.fromEntries(
['/api', '/management', '/v3/api-docs', '/login'].map(res => [
res,
{
target: 'http://localhost:8080',
},
]),
),
},
});
// jhipster-needle-add-vite-config - JHipster will add custom config
export default config;