mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
13 lines
297 B
JavaScript
13 lines
297 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
productionBrowserSourceMaps: true,
|
|
swcMinify: false,
|
|
sassOptions: {
|
|
includePaths: [path.join(__dirname, 'styles')]
|
|
},
|
|
images: {
|
|
domains: ['i.albrt.hu', 'lastfm.freetls.fastly.net'],
|
|
formats: ['image/avif', 'image/webp']
|
|
}
|
|
}
|