-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
92 lines (84 loc) · 2.61 KB
/
vite.config.js
File metadata and controls
92 lines (84 loc) · 2.61 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
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 = 5174; // Port différent pour les plugins (5173 pour les thèmes)
const publicDirectory = "../../../../public";
const pluginName = 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 getPluginConfig = () => ({
base: "/build/plugin/" + pluginName,
input: ["./resources/assets/app.js"],
publicDirectory,
hotFile: path.join(publicDirectory, `${pluginName}.hot`),
buildDirectory: path.join("build", "plugins", pluginName),
refresh: [
...refreshPaths,
'public/content/plugins/'+pluginName+'/resources/views/**',
'public/content/plugins/'+pluginName+'/app/**/*.php',
],
});
export default defineConfig({
base: "/build/plugin/" + pluginName,
build: {
emptyOutDir: false,
},
plugins: [
tailwindcss(),
laravel(getPluginConfig()),
{
name: "blade",
handleHotUpdate({ file, server }) {
if (file.endsWith(".blade.php") || file.endsWith(".php")) {
server.ws.send({
type: "full-reload",
path: "*",
});
}
},
},
],
...getDevServerConfig()
});