The choice for pulling HTML data instead of Wiki markup from Wiktionary was made because the markup content would have required a lot of code to expand the template data into user readable content.
12 lines
189 B
JavaScript
Executable File
12 lines
189 B
JavaScript
Executable File
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
images: {
|
|
unoptimized: true,
|
|
},
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|