17 lines
265 B
TypeScript
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;
|