mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
ea927b583d
It's near-impossible to get this to error on the Rust side (issues are caught before we get here), but I hacked up the code to make it error. It looks like this: 
14 lines
199 B
JavaScript
14 lines
199 B
JavaScript
module.exports = {
|
|
turbopack: {
|
|
rules: {
|
|
"*.svg": {
|
|
loaders: ["@svgr/webpack"],
|
|
as: "*.js",
|
|
condition: {
|
|
path: /abc/,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
};
|