onedrive/next.config.js

25 lines
526 B
JavaScript
Raw Normal View History

2021-06-22 11:58:37 +00:00
module.exports = {
webpack: (config) => {
// 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;
},
2021-06-22 11:58:37 +00:00
reactStrictMode: true,
2021-06-23 22:51:23 +00:00
images: {
domains: ['public.dm.files.1drv.com'],
},
2021-06-22 11:58:37 +00:00
}