forked from betaflight/betaflight-configurator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.js
65 lines (61 loc) · 2.05 KB
/
vite.config.js
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
/// <reference types="vitest" />
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue2";
import path from "node:path";
import { readFileSync } from "node:fs";
function serveFileFromDirectory(directory) {
return (req, res, next) => {
const filePath = req.url.replace(new RegExp(`^/${directory}/`), "");
const absolutePath = path.resolve(process.cwd(), directory, filePath);
try {
const fileContents = readFileSync(absolutePath, "utf-8");
res.end(fileContents);
} catch (e) {
// If file not found or any other error, pass to the next middleware
next();
}
};
}
/**
* This is plugin to work around the file structure required nwjs.
* In future this can be dropped if we restructure folder structure
* to be more web friendly.
* @returns {import('vite').Plugin}
*/
function serveLocalesPlugin() {
return {
name: "serve-locales",
configureServer(server) {
return () => {
server.middlewares.use((req, res, next) => {
if (req.url.startsWith("/locales/")) {
serveFileFromDirectory('locales')(req, res, next);
} else if (req.url.startsWith("/resources/")) {
serveFileFromDirectory('resources')(req, res, next);
} else {
next();
}
});
};
},
};
}
export default defineConfig({
test: {
// NOTE: this is a replacement location for karma tests.
// moving forward we should colocate tests with the
// code they test.
include: ["test/**/*.test.{js,mjs,cjs}"],
environment: "jsdom",
setupFiles: ["test/setup.js"],
root: '.',
},
plugins: [vue(), serveLocalesPlugin()],
root: "./src",
resolve: {
alias: {
"/src": path.resolve(process.cwd(), "src"),
'vue': path.resolve(__dirname, 'node_modules/vue/dist/vue.esm.js'),
},
},
});