mirror of
https://github.com/diced/zipline.git
synced 2025-04-04 23:21:17 -05:00
17 lines
381 B
JavaScript
17 lines
381 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
module.exports = {
|
|
images: {
|
|
domains: [
|
|
// For sharex icon in manage user
|
|
'getsharex.com',
|
|
// For flameshot icon, and maybe in the future other stuff from github
|
|
'raw.githubusercontent.com',
|
|
// Google Icon
|
|
'madeby.google.com',
|
|
],
|
|
},
|
|
poweredByHeader: false,
|
|
reactStrictMode: true,
|
|
};
|