-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
95 lines (87 loc) · 2.53 KB
/
vite.config.js
File metadata and controls
95 lines (87 loc) · 2.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import { defineConfig } from "vite";
import laravel, { refreshPaths } from 'laravel-vite-plugin';
import path from 'path';
import tailwindcss from '@tailwindcss/vite';
// Détection de l'environnement
const isDocker = process.env.IS_DOCKER || process.env.DOCKER_ENV || process.env.DDEV_PRIMARY_URL;
const port = 5173;
const publicDirectory = "../../public";
const themeName = path.basename(__dirname);
const getBaseUrl = () => {
return process.env.APP_URL || process.env.DDEV_PRIMARY_URL || 'http://localhost';
};
const isHttps = getBaseUrl().startsWith('https');
const getDevServerConfig = () => {
const commonConfig = {
server: {
port,
strictPort: true,
cors: {
origin: '*',
methods: ['GET', 'POST', 'PUT', 'DELETE', 'OPTIONS'],
credentials: true
},
}
};
if (isDocker) {
return {
server: {
...commonConfig.server,
host: '0.0.0.0',
origin: `${getBaseUrl()}:${port}`,
hmr: {
protocol: isHttps ? 'wss' : 'ws',
host: new URL(getBaseUrl()).hostname,
}
},
};
}
return {
server: {
...commonConfig.server,
https: isHttps,
host: isHttps ? new URL(getBaseUrl()).hostname : 'localhost',
hmr: {
protocol: isHttps ? 'wss' : 'ws',
host: new URL(getBaseUrl()).hostname
}
},
};
};
const getThemeConfig = () => ({
base: "/build/theme/" + themeName,
input: ["./resources/assets/app.js"],
publicDirectory,
hotFile: path.join(publicDirectory, `${themeName}.hot`),
buildDirectory: path.join("build", "theme", themeName),
refresh: [
...refreshPaths,
'themes/'+themeName+'/resources/views/**',
],
assets: [
'resources/assets/images/**',
'resources/assets/fonts/**',
],
});
export default defineConfig({
base: "/build/theme/" + themeName,
build: {
emptyOutDir: false,
},
plugins: [
tailwindcss(),
laravel(getThemeConfig()),
{
name: "blade",
handleHotUpdate({ file, server }) {
if (file.endsWith(".blade.php")) {
server.ws.send({
type: "full-reload",
path: "*",
});
}
},
},
],
...getDevServerConfig()
});