eadfa09570
- (maybe) faster http server - easy to develop on
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,
|
|
};
|