11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
import { defineConfig } from 'rolldown';
|
|
|
|
export default defineConfig({
|
|
input: 'lib/exports.js',
|
|
output: {
|
|
format: 'esm',
|
|
file: 'bundle/bundle.js',
|
|
minify: true,
|
|
},
|
|
});
|