Skip to content

Instantly share code, notes, and snippets.

@huozhi
Created July 22, 2025 13:30
Show Gist options
  • Save huozhi/b4cfb2a14bfdca524ae80b0f80d7adac to your computer and use it in GitHub Desktop.
Save huozhi/b4cfb2a14bfdca524ae80b0f80d7adac to your computer and use it in GitHub Desktop.
output esm modules with rspack
{
mode: dev ? 'development' : 'production',
output: {
path: path.join(__dirname, 'dist/compiled/next-devtools'),
filename: `index.js`,
iife: false,
chunkFormat: 'module',
chunkLoading: 'import',
library: {
type: 'module',
},
},
experiments: {
outputModule: true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment