2023-08-26 11:55:51 +00:00
|
|
|
import { fileURLToPath, URL } from "node:url";
|
2023-08-27 21:52:33 +00:00
|
|
|
import path from "node:path";
|
2023-08-26 11:55:51 +00:00
|
|
|
import { defineConfig } from "vite";
|
|
|
|
import legacy from "@vitejs/plugin-legacy";
|
|
|
|
import vue2 from "@vitejs/plugin-vue2";
|
|
|
|
import { compression } from "vite-plugin-compression2";
|
2023-08-29 18:14:45 +00:00
|
|
|
import pluginRewriteAll from "vite-plugin-rewrite-all";
|
2023-08-26 11:55:51 +00:00
|
|
|
|
|
|
|
const plugins = [
|
|
|
|
vue2(),
|
|
|
|
legacy({
|
|
|
|
targets: ["ie >= 11"],
|
|
|
|
additionalLegacyPolyfills: ["regenerator-runtime/runtime"],
|
|
|
|
}),
|
|
|
|
compression({ include: /\.js$/i, deleteOriginalAssets: true }),
|
2023-08-29 18:14:45 +00:00
|
|
|
pluginRewriteAll(), // fixes 404 error with paths containing dot in dev server
|
2023-08-26 11:55:51 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const resolve = {
|
|
|
|
alias: {
|
|
|
|
vue: "vue/dist/vue.esm.js",
|
2023-08-27 21:52:33 +00:00
|
|
|
"@/": `${path.resolve(__dirname, "src")}/`,
|
2023-08-26 11:55:51 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
// https://vitejs.dev/config/
|
|
|
|
export default defineConfig(({ command }) => {
|
|
|
|
if (command === "serve") {
|
|
|
|
return {
|
|
|
|
plugins,
|
|
|
|
resolve,
|
|
|
|
server: {
|
|
|
|
proxy: {
|
2023-08-29 18:14:45 +00:00
|
|
|
"/api/command": {
|
|
|
|
target: "ws://127.0.0.1:8080",
|
|
|
|
ws: true,
|
|
|
|
},
|
2023-08-26 12:01:01 +00:00
|
|
|
"/api": "http://127.0.0.1:8080",
|
2023-08-26 11:55:51 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
} else {
|
|
|
|
// command === 'build'
|
|
|
|
return {
|
|
|
|
plugins,
|
|
|
|
resolve,
|
|
|
|
base: "",
|
|
|
|
build: {
|
|
|
|
rollupOptions: {
|
|
|
|
input: {
|
|
|
|
index: fileURLToPath(
|
|
|
|
new URL(`./public/index.html`, import.meta.url)
|
|
|
|
),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
experimental: {
|
|
|
|
renderBuiltUrl(filename, { hostType }) {
|
|
|
|
if (hostType === "js") {
|
|
|
|
return { runtime: `window.__prependStaticUrl("${filename}")` };
|
|
|
|
} else if (hostType === "html") {
|
|
|
|
return `[{[ .StaticURL ]}]/${filename}`;
|
|
|
|
} else {
|
|
|
|
return { relative: true };
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
}
|
|
|
|
});
|