import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'export', /* config options here */ reactCompiler: true, turbopack: { rules: { '*.{vert,frag}': { loaders: ['raw-loader'], as: '*.js' } } } }; export default nextConfig;