summaryrefslogtreecommitdiff
path: root/client/simple/vite.config.ts
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2025-09-05 11:38:54 +0200
committerGitHub <noreply@github.com>2025-09-05 11:38:54 +0200
commita966e10bf5cdb0595ec273b31a2bcdc9164b17b7 (patch)
treeade68169c8bf8d1df89b2503b7b9738ff61d7823 /client/simple/vite.config.ts
parentd4173f129f0c7f86b654d4816dd804c323eb2649 (diff)
[upd] web-client (simple): Bump the minor group in /client/simple with 2 updates (#5179)
* [upd] web-client (simple): Bump the minor group Bumps the minor group in /client/simple with 2 updates: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) and [vite-bundle-analyzer](https://github.com/nonzzz/vite-bundle-analyzer). Updates `@types/node` from 24.3.0 to 24.3.1 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) Updates `vite-bundle-analyzer` from 1.2.2 to 1.2.3 - [Release notes](https://github.com/nonzzz/vite-bundle-analyzer/releases) - [Changelog](https://github.com/nonzzz/vite-bundle-analyzer/blob/master/CHANGELOG.md) - [Commits](https://github.com/nonzzz/vite-bundle-analyzer/compare/v1.2.2...v1.2.3) --- updated-dependencies: - dependency-name: "@types/node" dependency-version: 24.3.1 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor - dependency-name: vite-bundle-analyzer dependency-version: 1.2.3 dependency-type: direct:development update-type: version-update:semver-patch dependency-group: minor ... Signed-off-by: dependabot[bot] <support@github.com> * update rolldown-vite --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Ivan Gabaldon <igabaldon@inetol.net>
Diffstat (limited to 'client/simple/vite.config.ts')
-rw-r--r--client/simple/vite.config.ts11
1 files changed, 2 insertions, 9 deletions
diff --git a/client/simple/vite.config.ts b/client/simple/vite.config.ts
index 66718f198..4de6a3c9e 100644
--- a/client/simple/vite.config.ts
+++ b/client/simple/vite.config.ts
@@ -36,12 +36,9 @@ const svg2svg_favicon_opts: Config = {
export default {
base: "/static/themes/simple/",
publicDir: "static/",
- mode: "production",
- // mode: "development",
build: {
target: browserslistToEsbuild(manifest.browserslist),
- cssTarget: browserslistToEsbuild(manifest.browserslist),
manifest: "manifest.json",
emptyOutDir: true,
assetsDir: "",
@@ -49,7 +46,7 @@ export default {
sourcemap: true,
- rollupOptions: {
+ rolldownOptions: {
input: {
// build CSS files
"searxng-ltr.css": `${PATH.src}/less/style-ltr.less`,
@@ -160,9 +157,5 @@ export default {
targets: browserslistToTargets(manifest.browserslist)
},
devSourcemap: true
- }, // end: css
-
- experimental: {
- enableNativePlugin: true
- } // end: experimental
+ } // end: css
} satisfies UserConfig;