18 lines
299 B
TypeScript
18 lines
299 B
TypeScript
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;
|