DRVDOC-1129: Clicking on editor margins should focus editor
[ProtonMail-WebClient.git] / packages / ai-assistant / vite.config.ts
blob109d0fd54bcd8ff6f8fa355e18a49229cf3602ef
1 import { defineConfig } from 'vite';
2 import mkcert from 'vite-plugin-mkcert';
3 import { viteSingleFile } from 'vite-plugin-singlefile';
5 export default defineConfig({
6     plugins: [
7         mkcert(),
8         viteSingleFile(),
9         {
10             name: 'html-inject-nonce-into-script-tag',
11             enforce: 'post',
12             /**
13              * Adds template for nonce that can be later replaced by the host of the HTML file.
14              * Backend is supposed to return this file as-is with the exception of replacing "{nonce}"".
15              */
16             transformIndexHtml(html: string) {
17                 const scriptStartRegex = /<script(.*?)/gi;
18                 const nonce = '<script nonce="{nonce}"$1';
20                 return html.replace(scriptStartRegex, nonce);
21             },
22         },
23     ],
24 });