blob: ce29f159eb925ebc0bc7020cd6cae603a8bc5dd4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
const path = require("path");
module.exports = {
reactStrictMode: true,
transpilePackages: ["ui"],
output: "standalone",
experimental: {
outputFileTracingRoot: path.join(__dirname, "../../"),
},
};
|