Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: allow passing extra esbuild options for standalone target #54

Merged
merged 5 commits into from
Jan 31, 2025

Conversation

thomasjm
Copy link
Contributor

@thomasjm thomasjm commented Jan 31, 2025

Per the discussion on #14.

I threw this together in order to get my SSR builds to be minified. We'll probably want to think carefully about the API, because it may involve directly exposing esbuild-specific options. This could cause problems down the road if vike-node wanted to offer alternative bundlers for standalone mode.

It would be cleanest to just pass the appropriate Vite configuration through automatically. However, users who want to minify their SSR builds care about fine-grained control of the minification options, and Vite configuration doesn't provide such; see #14 (comment).

CC @magne4000 @brillout @simplecommerce

@magne4000 magne4000 changed the title Be able to pass extra esbuild options for standalonePlugin feat: allow passing extra esbuild options for standalone target Jan 31, 2025
@brillout
Copy link
Member

How about standalone: boolean | { esbuild: BuildOptions }?

@magne4000
Copy link
Member

@brillout I was going to ask you the same thing, so I'll do it that way 👍

@magne4000 magne4000 merged commit e2eabc2 into vikejs:main Jan 31, 2025
2 checks passed
@magne4000
Copy link
Member

Released as 0.3.4 🚀

@simplecommerce
Copy link

@magne4000 Hi, I just tested this and I get this error:

computing gzip size (21)...Error: You stumbled upon a bug in vike-node's source code. Reach out on GitHub and we will fix the bug.
    at assert (file:///root/v3/core-v3/backend/node_modules/vike-node/dist/plugin/index.js:29:9)
    at configResolved (file:///root/v3/core-v3/backend/node_modules/vike-node/dist/plugin/index.js:895:7)
    at file:///root/v3/core-v3/backend/node_modules/vite/dist/node/chunks/dep-CDnG8rE7.js:66348:67
    at Array.map (<anonymous>)
    at resolveConfig (file:///root/v3/core-v3/backend/node_modules/vite/dist/node/chunks/dep-CDnG8rE7.js:66348:53)
    at build (file:///root/v3/core-v3/backend/node_modules/vite/dist/node/chunks/dep-CDnG8rE7.js:65180:18)
    at triggerFullBuild (file:///root/v3/core-v3/backend/node_modules/vike/dist/esm/node/plugin/plugins/autoFullBuild.js:81:9)
    at Object.handler (file:///root/v3/core-v3/backend/node_modules/vike/dist/esm/node/plugin/plugins/autoFullBuild.js:34:25)
    at async Promise.all (index 0)
    at PluginDriver.hookParallel (file:///root/v3/core-v3/backend/node_modules/rollup/dist/es/shared/node-entry.js:19920:9)

When I look at the at configResolved (file:///root/v3/core-v3/backend/node_modules/vike-node/dist/plugin/index.js:895:7)

It says the issue is here

      assert(typeof configResolvedVike.server.standalone === "boolean");

This is what I passed to the standalone field:

	standalone: {
		esbuild: {
			minify: true,
		},
	},

If I remove it and put true it builds normally.

@magne4000
Copy link
Member

Indeed. Let me fix that

@magne4000
Copy link
Member

Fix released as 0.3.5

@magne4000
Copy link
Member

@thomasjm I wanted to let you know that vike-node will soon be superseded by vike-server, and with it comes breaking changes, notably regarding how we handle external configuration.

I've released vike-server@1.0.0-beta.2, and here's the migration documentation, and the official documentation.
I'd like to know if some things are breaking, or if you have any kind of feedback.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants