mirror of
https://github.com/rubickCenter/rubick
synced 2025-06-06 10:34:08 +08:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
const path = require("path");
|
|
|
|
module.exports = {
|
|
outputDir: path.join(__dirname, "../public/runner"),
|
|
publicPath: process.env.NODE_ENV === "production" ? "" : "/",
|
|
};
|