51 lines
1.3 KiB
JavaScript
51 lines
1.3 KiB
JavaScript
// const path = require('path');
|
|
// const CopyPlugin = require('copy-webpack-plugin');
|
|
|
|
const withNextra = require('nextra')({
|
|
theme: 'nextra-theme-docs',
|
|
themeConfig: './theme.config.tsx',
|
|
});
|
|
|
|
const nextra = withNextra();
|
|
nextra.webpack = (config, options) => {
|
|
// generate Nextra's webpack config
|
|
const newConfig = withNextra().webpack(config, options);
|
|
|
|
newConfig.module.rules.push({
|
|
test: /\.txt$/i,
|
|
use: 'raw-loader',
|
|
});
|
|
|
|
// TODO: figure out how to properly bundle WASM and workers with Nextra
|
|
// newConfig.plugins.push(
|
|
// new CopyPlugin({
|
|
// patterns: [
|
|
// {
|
|
// from: path.resolve(path.dirname(require.resolve('@nymproject/mix-fetch/package.json')), '*.wasm'),
|
|
// to: '[name][ext]',
|
|
// context: path.resolve(__dirname, 'out'),
|
|
// },
|
|
// {
|
|
// from: path.resolve(path.dirname(require.resolve('@nymproject/mix-fetch/package.json')), '*worker*.js'),
|
|
// to: '[name][ext]',
|
|
// context: path.resolve(__dirname, 'out'),
|
|
// },
|
|
// ],
|
|
// }),
|
|
// );
|
|
|
|
return newConfig;
|
|
};
|
|
|
|
const config = {
|
|
...nextra,
|
|
// output: 'export', // static HTML files, has problems with Vercel
|
|
// rewrites: undefined,
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
transpilePackages: ['@nymproject/contract-clients'],
|
|
};
|
|
|
|
module.exports = config;
|