-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.js
More file actions
106 lines (97 loc) · 3.21 KB
/
vite.config.js
File metadata and controls
106 lines (97 loc) · 3.21 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
96
97
98
99
100
101
102
103
104
105
106
import { defineConfig } from "vite";
import laravel, { refreshPaths } from 'laravel-vite-plugin';
import { wordpressPlugin } from '@roots/vite-plugin';
import { globSync } from 'glob';
import path from 'path';
import tailwindcss from '@tailwindcss/vite';
// Environment detection
const isDocker = process.env.IS_DOCKER || process.env.DOCKER_ENV || process.env.DDEV_PRIMARY_URL;
const port = 5174; // Different port for plugins (5173 for themes)
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 blockEntries = globSync('./resources/blocks/*/{index,view}.{js,jsx,ts,tsx}')
.concat(globSync('./resources/blocks/*/{editor,style}.css'))
.reduce((acc, file) => {
const slug = path.basename(path.dirname(file));
const name = path.basename(file, path.extname(file));
acc[`blocks/${slug}/${name}`] = file;
return acc;
}, {});
const hasBlocks = Object.keys(blockEntries).length > 0;
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", ...Object.values(blockEntries)],
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',
'resources/blocks/**',
],
});
export default defineConfig({
base: "/build/plugin/" + pluginName,
build: {
emptyOutDir: false,
},
plugins: [
tailwindcss(),
laravel(getPluginConfig()),
...(hasBlocks ? [wordpressPlugin()] : []),
{
name: "blade",
handleHotUpdate({ file, server }) {
if (file.endsWith(".blade.php") || file.endsWith(".php")) {
server.ws.send({
type: "full-reload",
path: "*",
});
}
},
},
],
...getDevServerConfig()
});