From 587293a85c69514cc48fc2122728cda7e63918d9 Mon Sep 17 00:00:00 2001 From: Anush Date: Sun, 30 Apr 2023 21:05:13 +0530 Subject: [PATCH] fix: unrecognized-manifest-key --- vite.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite.config.ts b/vite.config.ts index cdd1a059..d87e27c9 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -1,7 +1,7 @@ import { defineConfig } from "vite"; import react from "@vitejs/plugin-react"; import { crx } from "@crxjs/vite-plugin"; -import * as manifest from "./manifest.json"; +import manifest from "./manifest.json" assert { type: "json" }; // https://vitejs.dev/config/ export default defineConfig({