mirror of
https://github.com/Safe-Support-Chat/ocrcc-chatbox
synced 2024-11-01 09:05:26 +00:00
13 lines
239 B
JavaScript
13 lines
239 B
JavaScript
|
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
module: {
|
||
|
rules: [
|
||
|
{
|
||
|
test: /\.scss$/,
|
||
|
use: ['style-loader', 'css-loader', 'sass-loader'],
|
||
|
include: path.resolve(__dirname, '../'),
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
}
|