css and image support
This commit is contained in:
parent
6a41593013
commit
c71e62246e
@ -8,10 +8,21 @@ module.exports = {
|
||||
},
|
||||
module: {
|
||||
rules: [
|
||||
// sass support with `import './styles.scss'`
|
||||
{
|
||||
test: /\.s[ac]ss$/i,
|
||||
use: ['style-loader', 'css-loader', 'sass-loader'],
|
||||
},
|
||||
// css support with `import './styles.css'`
|
||||
{
|
||||
test: /\.s[ac]ss$/i,
|
||||
use: ['style-loader', 'css-loader'],
|
||||
},
|
||||
// image support with `import Image from './image.png'`
|
||||
{
|
||||
test: /\.(png|svg|jpg|jpeg|gif)$/i,
|
||||
type: 'asset/resource',
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user