Skip to content

Commit

Permalink
fix: disable source map
Browse files Browse the repository at this point in the history
  • Loading branch information
lollipop-onl committed Jan 8, 2024
1 parent 860d141 commit 32d09b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import commonjs from "@rollup/plugin-commonjs";
import { nodeResolve } from "@rollup/plugin-node-resolve";
import { defineConfig } from "rollup";


export default defineConfig({
input: "src/index.js",
output: {
file: process.env.npm_package_main,
format: "umd",
sourcemap: true,
},
plugins: [nodeResolve(), commonjs()],
});
});

0 comments on commit 32d09b7

Please sign in to comment.