
* bootstrap segment app from cms app * tracking logic * schema configuratioj * config form * form saving * Connected order_created * add more fields * Order updated webhook * Order cancelled event * order refunded webhook * order fully paid * update deps * error handling * logger * logs * Add app to workflow * add icon * remove breadcrumbs * Change 400 to 200 response if payload is invalid * link to docs * change semgent.io to segment
17 lines
340 B
TypeScript
17 lines
340 B
TypeScript
import react from "@vitejs/plugin-react";
|
|
|
|
import { defineConfig } from "vitest/config";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
test: {
|
|
passWithNoTests: true,
|
|
environment: "jsdom",
|
|
setupFiles: "./src/setup-tests.ts",
|
|
css: false,
|
|
alias: {
|
|
"@": "./src",
|
|
},
|
|
},
|
|
});
|