mirror of
https://github.com/skidoodle/albert.lol.git
synced 2025-02-15 06:09:15 +01:00
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
productionBrowserSourceMaps: true,
|
|
swcMinify: true,
|
|
sassOptions: {
|
|
includePaths: [path.join(__dirname, 'styles')]
|
|
}
|
|
}
|