-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.js
45 lines (45 loc) · 1.22 KB
/
next.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/** @type {import('next').NextConfig} */
const nextConfig = {
async headers() {
return [
{
source: '/dist/pdfgrep.wasm',
headers: [
{
key: 'Content-Type',
value: 'application/wasm',
},
],
},
]
},
webpack: (config, { buildId, dev, isServer, defaultLoaders, nextRuntime, webpack }) => {
if (!isServer) {
const CopyPlugin = require("copy-webpack-plugin")
const path = require('path')
// copy file from pdfjs-dist
config.plugins.push(
new CopyPlugin({
'patterns': [
{
'from': path.join(__dirname, './node_modules/pdfjs-dist/build/pdf.worker.js'),
'to': path.join(__dirname, './public/dist/pdf.worker.js'),
},
{
'from': path.join(__dirname, './node_modules/pdfjs-dist/build/pdf.worker.js.map'),
'to': path.join(__dirname, './public/dist/pdf.worker.js.map'),
}
],
})
)
}
return config
},
experimental: {
appDir: true,
runtime: 'experimental-edge', // 'node.js' (default) | experimental-edge
},
reactStrictMode: true,
swcMinify: true,
}
module.exports = nextConfig