dc926e9f5a
* feat: ssr for /code/[id], fix: syntax highlighting * feat: cache responses * ref: eslint * wip * Create .gitattributes * wip again * redesign dashboard * ref: use react-query for url ref: break into components feat: loading animation for delete feat: no url image * feat: use react-query mutation for files * ref: update sizing on code input * chore(deps): update mantine * feat: overhaul stats page * fix: incorrectly calculating stat % change * fix: use latest data in stats per day * feat: add validation on stats amount query string * refactor: clean up imports & code * fix: remove prettier (fixes eslint) * ref: run eslint autofix * ref: more eslint * ref: replace undraw on homepage with react-feather * refactor: remove tailwind & add responsiveness to stuff * fix: colors on file placeholder * fix: make actions work * feat: new sharex configuration generator Co-authored-by: diced <pranaco2@gmail.com>
30 lines
No EOL
501 B
JavaScript
30 lines
No EOL
501 B
JavaScript
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
module.exports = {
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/',
|
|
destination: '/dashboard',
|
|
permanent: true,
|
|
},
|
|
];
|
|
},
|
|
webpack(config) {
|
|
config.module.rules.push({
|
|
test: /\.svg$/,
|
|
use: ['@svgr/webpack'],
|
|
});
|
|
|
|
return config;
|
|
},
|
|
images: {
|
|
domains: [
|
|
// For sharex icon in manage user
|
|
'getsharex.com',
|
|
],
|
|
},
|
|
poweredByHeader: false,
|
|
reactStrictMode: true,
|
|
}; |