We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcd7874 commit a484cf3Copy full SHA for a484cf3
rspack.config.ts
@@ -1,5 +1,6 @@
1
import { defineConfig } from "@rspack/cli";
2
import rspack from "@rspack/core";
3
+import * as path from "node:path";
4
5
const isProd = process.env["JEKYLL_ENV"] === "production";
6
@@ -34,7 +35,7 @@ export default defineConfig({
34
35
],
36
},
37
output: {
- path: "_site/",
38
+ path: path.resolve(__dirname, "_site/"),
39
filename: "script.js",
40
scriptType: "module",
41
0 commit comments