diff --git a/packages/markup/vite.config.ts b/packages/markup/vite.config.ts index 1f46b6589..4f263b22e 100644 --- a/packages/markup/vite.config.ts +++ b/packages/markup/vite.config.ts @@ -12,14 +12,14 @@ export default defineConfig({ plugins: [ vanillaExtractPlugin({ emitCssInSsr: true, - identifiers: ({ hash, filePath, debugId }) => { + identifiers: ({ filePath, debugId }) => { const name = filePath .split("/") ?.pop() ?.split(".")[0] ?.replace("-", "_") const id = debugId ? "_" + debugId : "" - return `ory_elements__${name}${id}__${hash}` + return `ory_elements__${name}${id}` }, }), dts({ insertTypesEntry: true }), diff --git a/packages/preact/vite.config.ts b/packages/preact/vite.config.ts index 9edbc8107..11bfcaa21 100644 --- a/packages/preact/vite.config.ts +++ b/packages/preact/vite.config.ts @@ -34,14 +34,14 @@ export default defineConfig({ plugins: [ vanillaExtractPlugin({ emitCssInSsr: true, - identifiers: ({ hash, filePath, debugId }) => { + identifiers: ({ filePath, debugId }) => { const name = filePath .split("/") ?.pop() ?.split(".")[0] ?.replace("-", "_") const id = debugId ? "_" + debugId : "" - return `ory_elements__${name}${id}__${hash}` + return `ory_elements__${name}${id}` }, }), dts({ insertTypesEntry: true }), diff --git a/packages/react/vite.config.ts b/packages/react/vite.config.ts index aa3eba5fe..f5d403649 100644 --- a/packages/react/vite.config.ts +++ b/packages/react/vite.config.ts @@ -21,14 +21,14 @@ export default defineConfig({ plugins: [ vanillaExtractPlugin({ emitCssInSsr: true, - identifiers: ({ hash, filePath, debugId }) => { + identifiers: ({ filePath, debugId }) => { const name = filePath .split("/") ?.pop() ?.split(".")[0] ?.replace("-", "_") const id = debugId ? "_" + debugId : "" - return `ory_elements__${name}${id}__${hash}` + return `ory_elements__${name}${id}` }, }), dts({