Webpack排除特定文件

我有这段代码webpack.config.prod.js,我想知道如何排除除特定路径中的一个以外的所有jsonsrc/configs/configs

exclude: [

/\.html$/,

/\.(js|jsx)$/,

/\.css$/,

/\.json$/,

/\.bmp$/,

/\.gif$/,

/\.jpe?g$/,

/\.png$/,

],

loader: require.resolve('file-loader'),

options: {

name: 'static/media/[name].[hash:8].[ext]',

}

...

回答:

根据Webpack文档,您可以执行以下操作。

exclude: {

test: [

/\.html$/,

/\.(js|jsx)$/,

/\.css$/,

/\.json$/,

/\.bmp$/,

/\.gif$/,

/\.jpe?g$/,

/\.png$/,

],

exclude: [

'src/configs/configs/your.json'

]

}

以上是 Webpack排除特定文件 的全部内容, 来源链接: utcz.com/qa/431915.html

回到顶部