We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If we are using two entry points which rely on the same json then resulting json is broken. // a.js
import data from "assets/content-attributes/PredefinedContentControlLists.json"; console.log("data: ", data); export { data };
// b.js
config
const config = { entryPoints: ["./src/index.rep.js", "./src/t.js"], minify: false, define: { "process.env.NODE_ENV": '"development"' }, outdir: "./dist", bundle: true, target: "es2018", format: "esm", sourcemap: "external", loader: { ".js": "jsx", ".css": "file", ".json": "json" } };
It's okay with splitting: true
The text was updated successfully, but these errors were encountered:
Wow that's no good. I'll start on a fix.
Sorry, something went wrong.
c317ef8
No branches or pull requests
If we are using two entry points which rely on the same json then resulting json is broken.
// a.js
// b.js
config
It's okay with splitting: true
The text was updated successfully, but these errors were encountered: