๐Ÿ“ฆ motiz88 / dgx-670-app

๐Ÿ“„ next.config.js ยท 10 lines
1
2
3
4
5
6
7
8
9
10module.exports = {
  reactStrictMode: true,
  webpack: (config, { buildId, dev, isServer, defaultLoaders, webpack }) => {
    // Important: return the modified config
    config.module.rules.push({ test: /\.wav$/i, type: 'asset/resource' });
    config.output.assetModuleFilename = 'assets/[name][ext]';
    return config;
  },
};