Disable sourcemaps on the output

This commit is contained in:
Nikita Karamov 2023-01-25 18:27:20 +01:00
parent 1550573923
commit d57a8cae50
No known key found for this signature in database
GPG Key ID: 41D6F71EE78E77CD
1 changed files with 3 additions and 1 deletions

View File

@ -4,7 +4,6 @@ import package_ from "./package.json";
export default defineConfig({
build: {
sourcemap: true,
target: "esnext",
lib: {
entry: path.resolve("./src/index.js"),
@ -25,4 +24,7 @@ export default defineConfig({
},
},
},
css: {
devSourcemap: true
}
});