remove usused next configs

This commit is contained in:
spencerwooo 2022-02-02 16:14:06 +08:00
parent 4803850e99
commit 8aeb145c6f
No known key found for this signature in database
GPG key ID: 24CD550268849CA0

View file

@ -1,26 +1,3 @@
module.exports = {
webpack: (config) => {
config.resolve.fallback = { fs: false, path: false, stream: false, constants: false };
// load worker files as a urls with `file-loader`
config.module.rules.unshift({
test: /pdf\.worker\.(min\.)?js/,
use: [
{
loader: "file-loader",
options: {
name: "[contenthash].[ext]",
publicPath: "_next/static/worker",
outputPath: "static/worker"
}
}
]
});
return config;
},
reactStrictMode: true,
images: {
domains: ['public.dm.files.1drv.com'],
},
}