-
Notifications
You must be signed in to change notification settings - Fork 0
/
next.config.mjs
36 lines (32 loc) · 1.09 KB
/
next.config.mjs
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
import nextIntl from 'next-intl';
import createNextIntlPlugin from 'next-intl/plugin';
const withNextIntl = createNextIntlPlugin();
/** @type {import('next').NextConfig} */
const nextConfig = {};
export default withNextIntl(nextConfig);
// /** @type {import('next').NextConfig} */
// const nextConfig = {};
//
// import path from 'path';
//
// export default {
// webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
// // Adiciona um novo rule para lidar com arquivos .wav
// config.module.rules.push({
// test: /\.(wav|mp3)$/i,
// use: [
// {
// loader: 'file-loader',
// options: {
// publicPath: '/_next/static/sounds', // Caminho público para os arquivos de som
// outputPath: path.join(config.output.path, 'static/sounds'), // Caminho de saída dos arquivos de som
// name: '[name].[ext]', // Nome do arquivo de saída
// esModule: false,
// },
// },
// ],
// });
//
// return config;
// },
// };