62 lines
2.0 KiB
TypeScript
62 lines
2.0 KiB
TypeScript
import react from "@vitejs/plugin-react";
|
|
import { defineConfig } from "vite";
|
|
import eslintPlugin from "vite-plugin-eslint";
|
|
import istanbul from "vite-plugin-istanbul";
|
|
import svgr from "vite-plugin-svgr";
|
|
import tsconfigPaths from "vite-tsconfig-paths";
|
|
|
|
export default defineConfig(({ mode }) => {
|
|
const isCoverage = process.env.VITE_COVERAGE === "true";
|
|
const sourcemap = isCoverage ? "inline" : undefined;
|
|
|
|
const istanbulPlugin = isCoverage
|
|
? istanbul({
|
|
checkProd: false,
|
|
exclude: ["node_modules"],
|
|
extension: [".js", ".jsx", ".ts", ".tsx"],
|
|
forceBuildInstrument: true,
|
|
include: "src/*",
|
|
requireEnv: true,
|
|
})
|
|
: undefined;
|
|
|
|
return {
|
|
base: "./",
|
|
build: {
|
|
assetsDir: "static",
|
|
emptyOutDir: true,
|
|
outDir: "../internal/server/public_html",
|
|
rollupOptions: {
|
|
output: {
|
|
assetFileNames: ({ name }) => {
|
|
if (name && name.endsWith(".css")) {
|
|
return "static/css/[name].[hash].[ext]";
|
|
}
|
|
|
|
return "static/media/[name].[hash].[ext]";
|
|
},
|
|
chunkFileNames: `static/js/[name].[hash].js`,
|
|
entryFileNames: `static/js/[name].[hash].js`,
|
|
},
|
|
},
|
|
sourcemap,
|
|
},
|
|
server: {
|
|
open: false,
|
|
port: 3000,
|
|
},
|
|
test: {
|
|
coverage: {
|
|
provider: "istanbul",
|
|
},
|
|
environment: "happy-dom",
|
|
globals: true,
|
|
onConsoleLog(log) {
|
|
if (log.includes('No routes matched location "blank"')) return false;
|
|
},
|
|
setupFiles: ["src/setupTests.ts"],
|
|
},
|
|
plugins: [eslintPlugin({ cache: false }), istanbulPlugin, react(), svgr(), tsconfigPaths()],
|
|
};
|
|
});
|