-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnext.config.js
44 lines (38 loc) · 1.09 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
const path = require('path');
const withPWA = require('next-pwa');
const runtimeCaching = require('next-pwa/cache');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const tsConfig = require('./tsconfig.json');
const tsPathsToAlias = (tsPaths) => {
const noAsterisk = item => item.replace('/*', '');
const result = Object.entries(tsPaths)
.reduce((acc, [key, value]) => {
acc[noAsterisk(key)] = path.resolve(__dirname, noAsterisk(value[0]));
return acc;
}, {});
return result;
};
module.exports = withPWA({
webpack(config) {
Object.assign(config.resolve.alias, tsPathsToAlias(tsConfig.compilerOptions.paths));
config.plugins.push(
new CopyWebpackPlugin({
patterns: [
{
from: path.resolve(__dirname, './src/public'),
to: path.resolve(__dirname, './public')
}
]
}),
);
return config;
},
pageExtensions: ['page.tsx', 'api.ts'],
serverRuntimeConfig: {
PROJECT_ROOT: __dirname
},
pwa: {
dest: 'public',
runtimeCaching,
},
});