mosaicmap/next.config.ts
2025-07-18 21:32:46 +08:00

17 lines
265 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
webpack(config) {
config.module.rules.push({
test: /\.glsl$/,
use: 'raw-loader',
});
return config;
}
};
export default nextConfig;