Feat/SW-3031 imagevault updates
* chore(SW-3031): Updated dependencies * feat(SW-3031): Added Imagevault Id to title and updated delete functionality Approved-by: Michael Zetterberg
This commit is contained in:
@@ -1,13 +1,12 @@
|
||||
import { resolve } from "path"
|
||||
import { defineConfig } from "vite"
|
||||
import devtoolsJson from "vite-plugin-devtools-json"
|
||||
import { libInjectCss } from "vite-plugin-lib-inject-css"
|
||||
import tsconfigPaths from "vite-tsconfig-paths"
|
||||
|
||||
export default defineConfig({
|
||||
plugins: [tsconfigPaths(), libInjectCss()],
|
||||
define: {
|
||||
IS_DEV: process.env.IS_DEV === "true" ? true : false,
|
||||
},
|
||||
plugins: [tsconfigPaths(), libInjectCss(), devtoolsJson()],
|
||||
define: { IS_DEV: process.env.IS_DEV === "true" ? true : false },
|
||||
publicDir: false,
|
||||
build: {
|
||||
sourcemap: process.env.IS_DEV ? "inline" : "hidden",
|
||||
@@ -20,9 +19,7 @@ export default defineConfig({
|
||||
},
|
||||
rollupOptions: {
|
||||
external: ["react", "react-dom", "@contentstack/venus-components"],
|
||||
output: {
|
||||
dir: "../remix/public/build/rte",
|
||||
},
|
||||
output: { dir: "../remix/public/build/rte" },
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user