mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
13 lines
254 B
JavaScript
13 lines
254 B
JavaScript
module.exports = function (context, options) {
|
|
return {
|
|
name: 'labelmap',
|
|
configureWebpack(config, isServer, utils) {
|
|
return {
|
|
module: {
|
|
rules: [{ test: /\.txt$/, use: 'raw-loader' }],
|
|
},
|
|
};
|
|
},
|
|
};
|
|
};
|